This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/models/userNamespace.js
kolaente e7c1c98c6a
All checks were successful
continuous-integration/drone/push Build is passing
Fix id params not being named correctly
2020-04-17 12:19:53 +02:00

14 lines
332 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 UserNamespaceModel extends UserShareBaseModel {
defaults() {
return merge(
super.defaults(),
{
namespaceId: 0,
}
)
}
}