- Add goals feature (models, migrations, API, web pages) - Add reserved/centralized wallet balance service - Add wallet detail page and overview components - Add new UI components (progress, multi-select, FAB) - Remove stray empty -H/-d files from working tree
124 lines
5.3 KiB
JavaScript
Executable File
124 lines
5.3 KiB
JavaScript
Executable File
"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.GoalsController = void 0;
|
|
const common_1 = require("@nestjs/common");
|
|
const goals_service_1 = require("./goals.service");
|
|
const create_goal_dto_1 = require("./dto/create-goal.dto");
|
|
const update_goal_dto_1 = require("./dto/update-goal.dto");
|
|
const create_allocation_dto_1 = require("./dto/create-allocation.dto");
|
|
const auth_guard_1 = require("../auth/auth.guard");
|
|
let GoalsController = class GoalsController {
|
|
goalsService;
|
|
constructor(goalsService) {
|
|
this.goalsService = goalsService;
|
|
}
|
|
create(req, createGoalDto) {
|
|
return this.goalsService.create(req.user.userId, createGoalDto);
|
|
}
|
|
findAll(req, status) {
|
|
return this.goalsService.findAll(req.user.userId, status);
|
|
}
|
|
getStats(req) {
|
|
return this.goalsService.getStats(req.user.userId);
|
|
}
|
|
findOne(req, id) {
|
|
return this.goalsService.findOne(req.user.userId, id);
|
|
}
|
|
update(req, id, updateGoalDto) {
|
|
return this.goalsService.update(req.user.userId, id, updateGoalDto);
|
|
}
|
|
remove(req, id) {
|
|
return this.goalsService.remove(req.user.userId, id);
|
|
}
|
|
addAllocation(req, id, createAllocationDto) {
|
|
return this.goalsService.addAllocation(req.user.userId, id, createAllocationDto);
|
|
}
|
|
removeAllocation(req, id, allocationId) {
|
|
return this.goalsService.removeAllocation(req.user.userId, id, allocationId);
|
|
}
|
|
};
|
|
exports.GoalsController = GoalsController;
|
|
__decorate([
|
|
(0, common_1.Post)(),
|
|
__param(0, (0, common_1.Request)()),
|
|
__param(1, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, create_goal_dto_1.CreateGoalDto]),
|
|
__metadata("design:returntype", void 0)
|
|
], GoalsController.prototype, "create", null);
|
|
__decorate([
|
|
(0, common_1.Get)(),
|
|
__param(0, (0, common_1.Request)()),
|
|
__param(1, (0, common_1.Query)('status')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, String]),
|
|
__metadata("design:returntype", void 0)
|
|
], GoalsController.prototype, "findAll", null);
|
|
__decorate([
|
|
(0, common_1.Get)('stats'),
|
|
__param(0, (0, common_1.Request)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object]),
|
|
__metadata("design:returntype", void 0)
|
|
], GoalsController.prototype, "getStats", null);
|
|
__decorate([
|
|
(0, common_1.Get)(':id'),
|
|
__param(0, (0, common_1.Request)()),
|
|
__param(1, (0, common_1.Param)('id')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, String]),
|
|
__metadata("design:returntype", void 0)
|
|
], GoalsController.prototype, "findOne", null);
|
|
__decorate([
|
|
(0, common_1.Patch)(':id'),
|
|
__param(0, (0, common_1.Request)()),
|
|
__param(1, (0, common_1.Param)('id')),
|
|
__param(2, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, String, update_goal_dto_1.UpdateGoalDto]),
|
|
__metadata("design:returntype", void 0)
|
|
], GoalsController.prototype, "update", null);
|
|
__decorate([
|
|
(0, common_1.Delete)(':id'),
|
|
__param(0, (0, common_1.Request)()),
|
|
__param(1, (0, common_1.Param)('id')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, String]),
|
|
__metadata("design:returntype", void 0)
|
|
], GoalsController.prototype, "remove", null);
|
|
__decorate([
|
|
(0, common_1.Post)(':id/allocations'),
|
|
__param(0, (0, common_1.Request)()),
|
|
__param(1, (0, common_1.Param)('id')),
|
|
__param(2, (0, common_1.Body)()),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, String, create_allocation_dto_1.CreateAllocationDto]),
|
|
__metadata("design:returntype", void 0)
|
|
], GoalsController.prototype, "addAllocation", null);
|
|
__decorate([
|
|
(0, common_1.Delete)(':id/allocations/:allocationId'),
|
|
__param(0, (0, common_1.Request)()),
|
|
__param(1, (0, common_1.Param)('id')),
|
|
__param(2, (0, common_1.Param)('allocationId')),
|
|
__metadata("design:type", Function),
|
|
__metadata("design:paramtypes", [Object, String, String]),
|
|
__metadata("design:returntype", void 0)
|
|
], GoalsController.prototype, "removeAllocation", null);
|
|
exports.GoalsController = GoalsController = __decorate([
|
|
(0, common_1.Controller)('goals'),
|
|
(0, common_1.UseGuards)(auth_guard_1.AuthGuard),
|
|
__metadata("design:paramtypes", [goals_service_1.GoalsService])
|
|
], GoalsController);
|
|
//# sourceMappingURL=goals.controller.js.map
|