| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- import { Request, Response } from "express";
- import { getIO } from "../libs/socket";
- import AppError from "../errors/AppError";
- import UpdateSettingService from "../services/SettingServices/UpdateSettingService";
- import ListSettingsService from "../services/SettingServices/ListSettingsService";
- export const index = async (req: Request, res: Response): Promise<Response> => {
- const { companyId } = req.user;
- // if (req.user.profile !== "admin") {
- // throw new AppError("ERR_NO_PERMISSION", 403);
- // }
- const settings = await ListSettingsService({ companyId });
- return res.status(200).json(settings);
- };
- export const update = async (
- req: Request,
- res: Response
- ): Promise<Response> => {
- if (req.user.profile !== "admin") {
- throw new AppError("ERR_NO_PERMISSION", 403);
- }
- const { settingKey: key } = req.params;
- const { value } = req.body;
- const { companyId } = req.user;
- const setting = await UpdateSettingService({
- key,
- value,
- companyId
- });
- const io = getIO();
- io.to(`company-${companyId}-mainchannel`).emit(`company-${companyId}-settings`, {
- action: "update",
- setting
- });
- return res.status(200).json(setting);
- };
|