2020-09-05 22:35:52 +02:00
|
|
|
import UserShareBaseModel from './userShareBase'
|
2019-03-02 11:25:10 +01:00
|
|
|
|
|
|
|
// This class extends the user share model with a 'rights' parameter which is used in sharing
|
|
|
|
export default class UserNamespaceModel extends UserShareBaseModel {
|
|
|
|
defaults() {
|
2021-10-06 22:25:06 +02:00
|
|
|
return {
|
|
|
|
...super.defaults(),
|
|
|
|
namespaceId: 0,
|
|
|
|
}
|
2019-03-02 11:25:10 +01:00
|
|
|
}
|
|
|
|
}
|