14 lines
321 B
JavaScript
14 lines
321 B
JavaScript
|
import UserShareBaseModel from './userShareBase'
|
||
|
import {merge} from 'lodash'
|
||
|
|
||
|
// This class extends the user share model with a 'rights' parameter which is used in sharing
|
||
|
export default class UserListModel extends UserShareBaseModel {
|
||
|
defaults() {
|
||
|
return merge(
|
||
|
super.defaults(),
|
||
|
{
|
||
|
listID: 0,
|
||
|
}
|
||
|
)
|
||
|
}
|
||
|
}
|