- Reorganized admin settings into tabbed interface (General, Security, Payment Methods) - Vertical tabs on desktop, horizontal scrollable on mobile - Moved Payment Methods from separate menu to Settings tab - Fixed admin profile reuse and dashboard blocking - Fixed maintenance mode guard to use AppConfig model - Added admin auto-redirect after login (admins → /admin, users → /) - Reorganized documentation into docs/ folder structure - Created comprehensive README and documentation index - Added PWA and Web Push notifications to to-do list
94 lines
3.9 KiB
JavaScript
94 lines
3.9 KiB
JavaScript
"use strict";
|
|
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
};
|
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
};
|
|
var __param = (this && this.__param) || function (paramIndex, decorator) {
|
|
return function (target, key) { decorator(target, key, paramIndex); }
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.AdminPlansController = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const auth_guard_1 = require("../auth/auth.guard");
|
|
const admin_guard_1 = require("./guards/admin.guard");
|
|
const admin_plans_service_1 = require("./admin-plans.service");
|
|
const skip_maintenance_decorator_1 = require("../common/decorators/skip-maintenance.decorator");
|
|
let AdminPlansController = class AdminPlansController {
|
|
plansService;
|
|
constructor(plansService) {
|
|
this.plansService = plansService;
|
|
}
|
|
findAll() {
|
|
return this.plansService.findAll();
|
|
}
|
|
findOne(id) {
|
|
return this.plansService.findOne(id);
|
|
}
|
|
create(data) {
|
|
return this.plansService.create(data);
|
|
}
|
|
update(id, data) {
|
|
return this.plansService.update(id, data);
|
|
}
|
|
delete(id) {
|
|
return this.plansService.delete(id);
|
|
}
|
|
reorder(body) {
|
|
return this.plansService.reorder(body.planIds);
|
|
}
|
|
};
|
|
exports.AdminPlansController = AdminPlansController;
|
|
__decorate([
|
|
(0, common_1.Get)(),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", []),
|
|
__metadata("design:returntype", void 0)
|
|
], AdminPlansController.prototype, "findAll", null);
|
|
__decorate([
|
|
(0, common_1.Get)(':id'),
|
|
__param(0, (0, common_1.Param)('id')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String]),
|
|
__metadata("design:returntype", void 0)
|
|
], AdminPlansController.prototype, "findOne", null);
|
|
__decorate([
|
|
(0, common_1.Post)(),
|
|
__param(0, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], AdminPlansController.prototype, "create", null);
|
|
__decorate([
|
|
(0, common_1.Put)(':id'),
|
|
__param(0, (0, common_1.Param)('id')),
|
|
__param(1, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String, Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], AdminPlansController.prototype, "update", null);
|
|
__decorate([
|
|
(0, common_1.Delete)(':id'),
|
|
__param(0, (0, common_1.Param)('id')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String]),
|
|
__metadata("design:returntype", void 0)
|
|
], AdminPlansController.prototype, "delete", null);
|
|
__decorate([
|
|
(0, common_1.Post)('reorder'),
|
|
__param(0, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], AdminPlansController.prototype, "reorder", null);
|
|
exports.AdminPlansController = AdminPlansController = __decorate([
|
|
(0, common_1.Controller)('admin/plans'),
|
|
(0, common_1.UseGuards)(auth_guard_1.AuthGuard, admin_guard_1.AdminGuard),
|
|
(0, skip_maintenance_decorator_1.SkipMaintenance)(),
|
|
__metadata("design:paramtypes", [admin_plans_service_1.AdminPlansService])
|
|
], AdminPlansController);
|
|
//# sourceMappingURL=admin-plans.controller.js.map
|