Add sort field to boards model

reviewable/pr3027/r1
boeserwolf 5 years ago
parent f583645744
commit 2400c91013
  1. 8
      models/boards.js

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

Loading…
Cancel
Save