2021-07-16 02:43:38 +08:00
|
|
|
import { Meteor } from 'meteor/meteor';
|
|
|
|
import setUserReaction from './methods/setUserReaction';
|
2023-07-21 22:10:10 +08:00
|
|
|
import clearAllUsersReaction from './methods/clearAllUsersReaction';
|
2021-07-16 02:43:38 +08:00
|
|
|
|
|
|
|
Meteor.methods({
|
|
|
|
setUserReaction,
|
2023-07-21 22:10:10 +08:00
|
|
|
clearAllUsersReaction,
|
2021-07-16 02:43:38 +08:00
|
|
|
});
|