Spaces:
Sleeping
Sleeping
import { Request, Response } from "express"; | |
import { injectable, inject } from "inversify"; | |
import { TYPES } from "../core/types"; | |
import { SettingService } from "../services/SettingService"; | |
import { BaseController } from "./BaseController"; | |
() | |
export class SettingController extends BaseController { | |
constructor(private settingService: SettingService) { (TYPES.SettingService) | |
super(); | |
} | |
async get(req: Request, res: Response): Promise<void> { | |
await this.handleRequest(req, res, async () => { | |
const userId = req.user?.userId; | |
const role = Number(req.user?.role); | |
return await this.settingService.getSettings(userId, role); | |
}); | |
} | |
async save(req: Request, res: Response): Promise<void> { | |
await this.handleRequest(req, res, async () => { | |
const userId = req.user?.userId; | |
const role = Number(req.user?.role); | |
return await this.settingService.saveSettings(userId, role, req.body); | |
}); | |
} | |
} | |