Add missing position property to list and bucket models

This commit is contained in:
kolaente 2021-07-28 22:46:33 +02:00
parent 617a6a0c21
commit a1e1fe4eb0
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 2 additions and 0 deletions

View File

@ -21,6 +21,7 @@ export default class BucketModel extends AbstractModel {
limit: 0,
tasks: [],
isDoneBucket: false,
position: 0,
createdBy: null,
created: null,

View File

@ -43,6 +43,7 @@ export default class ListModel extends AbstractModel {
backgroundInformation: null,
isFavorite: false,
subscription: null,
position: 0,
created: null,
updated: null,