RocketChat/Rocket.Chat

View on GitHub
apps/meteor/client/methods/hideRoom.ts

Summary

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

import { ChatSubscription } from '../../app/models/client';

Meteor.methods<ServerMethods>({
    async hideRoom(rid) {
        if (!Meteor.userId()) {
            return 0;
        }

        return ChatSubscription.update(
            {
                rid,
                'u._id': Meteor.userId(),
            },
            {
                $set: {
                    alert: false,
                    open: false,
                },
            },
        );
    },
});