9 lines
286 B
JavaScript
9 lines
286 B
JavaScript
import LocalSettings from '/imports/api/local-settings';
|
|
import Logger from '/imports/startup/server/logger';
|
|
|
|
export default function clearLocalSettings(meetingId) {
|
|
return LocalSettings.remove({ meetingId }, () => {
|
|
Logger.info(`Cleared Local Settings (${meetingId})`);
|
|
});
|
|
}
|