2019-03-02 10:25:10 +00:00
|
|
|
import UserShareBaseModel from './userShareBase'
|
|
|
|
|
|
|
|
// This class extends the user share model with a 'rights' parameter which is used in sharing
|
|
|
|
export default class UserListModel extends UserShareBaseModel {
|
|
|
|
defaults() {
|
2021-10-06 20:25:06 +00:00
|
|
|
return {
|
|
|
|
...super.defaults(),
|
|
|
|
listId: 0,
|
|
|
|
}
|
2019-03-02 10:25:10 +00:00
|
|
|
}
|
|
|
|
}
|