mirror of
https://github.com/wekan/wekan.git
synced 2026-02-04 07:31:47 +01:00
resolving merge conflicts
This commit is contained in:
commit
9518a5c11e
30 changed files with 880 additions and 58 deletions
|
|
@ -75,6 +75,7 @@ Meteor.publishRelations('board', function(boardId) {
|
|||
this.cursor(Lists.find({ boardId }));
|
||||
this.cursor(Swimlanes.find({ boardId }));
|
||||
this.cursor(Integrations.find({ boardId }));
|
||||
this.cursor(CustomFields.find({ boardId }, { sort: { name: 1 } }));
|
||||
|
||||
// Cards and cards comments
|
||||
// XXX Originally we were publishing the card documents as a child of the
|
||||
|
|
|
|||
3
server/publications/customFields.js
Normal file
3
server/publications/customFields.js
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
Meteor.publish('customFields', function() {
|
||||
return CustomFields.find();
|
||||
});
|
||||
Loading…
Add table
Add a link
Reference in a new issue