wekan/server/publications/userDesktopDragHandles.js
2026-01-14 19:10:51 +02:00

8 lines
No EOL
217 B
JavaScript

Meteor.publish('userDesktopDragHandles', function() {
if (!this.userId) return this.ready();
return Meteor.users.find({ _id: this.userId }, {
fields: {
'profile.showDesktopDragHandles': 1
}
});
});