mirror of
https://github.com/wekan/wekan.git
synced 2026-01-16 22:45:29 +01:00
8 lines
No EOL
217 B
JavaScript
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
|
|
}
|
|
});
|
|
}); |