mirror of
https://github.com/wekan/wekan.git
synced 2026-01-28 04:06:10 +01:00
CardDetails sorting number is displayed at card and can be modified (if configured)
This commit is contained in:
parent
ab22fb27ce
commit
540ce3a6ed
6 changed files with 68 additions and 0 deletions
|
|
@ -373,6 +373,14 @@ Boards.attachSchema(
|
|||
defaultValue: true,
|
||||
},
|
||||
|
||||
allowsCardSortingByNumber: {
|
||||
/**
|
||||
* Does the board allows card sorting by number?
|
||||
*/
|
||||
type: Boolean,
|
||||
defaultValue: true,
|
||||
},
|
||||
|
||||
allowsAssignedBy: {
|
||||
/**
|
||||
* Does the board allows requested by?
|
||||
|
|
@ -1190,6 +1198,10 @@ Boards.mutations({
|
|||
return { $set: { allowsRequestedBy } };
|
||||
},
|
||||
|
||||
setAllowsCardSortingByNumber(allowsCardSortingByNumber) {
|
||||
return { $set: { allowsCardSortingByNumber } };
|
||||
},
|
||||
|
||||
setAllowsAttachments(allowsAttachments) {
|
||||
return { $set: { allowsAttachments } };
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue