Add sort field to boards model

This commit is contained in:
boeserwolf 2020-04-19 10:48:44 +03:00
parent f583645744
commit 2400c91013

View file

@ -493,6 +493,14 @@ Boards.attachSchema(
type: String,
defaultValue: 'board',
},
sort: {
/**
* Sort value
*/
type: Number,
decimal: true,
defaultValue: -1,
},
}),
);