- AdminPlansController & Service (CRUD, reorder) - AdminPaymentMethodsController & Service (CRUD, reorder) - AdminPaymentsController & Service (verify, reject, pending count) - AdminUsersController & Service (search, suspend, grant pro access, stats) - AdminConfigController & Service (dynamic config management) - Wire all controllers into AdminModule - Import AdminModule in AppModule Admin API Routes: - GET/POST/PUT/DELETE /admin/plans - GET/POST/PUT/DELETE /admin/payment-methods - GET /admin/payments (with status filter) - POST /admin/payments/:id/verify - POST /admin/payments/:id/reject - GET /admin/users (with search) - POST /admin/users/:id/grant-pro - GET/POST/DELETE /admin/config All routes protected by AuthGuard + AdminGuard
84 lines
3.6 KiB
JavaScript
84 lines
3.6 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.AdminPaymentsController = 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_payments_service_1 = require("./admin-payments.service");
|
|
let AdminPaymentsController = class AdminPaymentsController {
|
|
service;
|
|
constructor(service) {
|
|
this.service = service;
|
|
}
|
|
findAll(status) {
|
|
return this.service.findAll(status);
|
|
}
|
|
getPendingCount() {
|
|
return this.service.getPendingCount();
|
|
}
|
|
findOne(id) {
|
|
return this.service.findOne(id);
|
|
}
|
|
verify(id, req) {
|
|
return this.service.verify(id, req.user.userId);
|
|
}
|
|
reject(id, req, body) {
|
|
return this.service.reject(id, req.user.userId, body.reason);
|
|
}
|
|
};
|
|
exports.AdminPaymentsController = AdminPaymentsController;
|
|
__decorate([
|
|
(0, common_1.Get)(),
|
|
__param(0, (0, common_1.Query)('status')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String]),
|
|
__metadata("design:returntype", void 0)
|
|
], AdminPaymentsController.prototype, "findAll", null);
|
|
__decorate([
|
|
(0, common_1.Get)('pending/count'),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", []),
|
|
__metadata("design:returntype", void 0)
|
|
], AdminPaymentsController.prototype, "getPendingCount", 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)
|
|
], AdminPaymentsController.prototype, "findOne", null);
|
|
__decorate([
|
|
(0, common_1.Post)(':id/verify'),
|
|
__param(0, (0, common_1.Param)('id')),
|
|
__param(1, (0, common_1.Req)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String, Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], AdminPaymentsController.prototype, "verify", null);
|
|
__decorate([
|
|
(0, common_1.Post)(':id/reject'),
|
|
__param(0, (0, common_1.Param)('id')),
|
|
__param(1, (0, common_1.Req)()),
|
|
__param(2, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [String, Object, Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], AdminPaymentsController.prototype, "reject", null);
|
|
exports.AdminPaymentsController = AdminPaymentsController = __decorate([
|
|
(0, common_1.Controller)('admin/payments'),
|
|
(0, common_1.UseGuards)(auth_guard_1.AuthGuard, admin_guard_1.AdminGuard),
|
|
__metadata("design:paramtypes", [admin_payments_service_1.AdminPaymentsService])
|
|
], AdminPaymentsController);
|
|
//# sourceMappingURL=admin-payments.controller.js.map
|