RocketChat/Rocket.Chat

View on GitHub
apps/meteor/app/livechat/server/methods/saveBusinessHour.ts

Summary

Maintainability
A
0 mins
Test Coverage
import type { ILivechatBusinessHour } from '@rocket.chat/core-typings';
import type { ServerMethods } from '@rocket.chat/ddp-client';
import { Meteor } from 'meteor/meteor';

import { businessHourManager } from '../business-hour';

declare module '@rocket.chat/ddp-client' {
    // eslint-disable-next-line @typescript-eslint/naming-convention
    interface ServerMethods {
        'livechat:saveBusinessHour'(businessHourData: ILivechatBusinessHour): void;
    }
}

Meteor.methods<ServerMethods>({
    async 'livechat:saveBusinessHour'(businessHourData) {
        try {
            await businessHourManager.saveBusinessHour(businessHourData);
        } catch (e) {
            throw new Meteor.Error(e instanceof Error ? e.message : String(e));
        }
    },
});