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/userList.js
kolaente 3c3767a91e
All checks were successful
continuous-integration/drone/push Build is passing
Use deep imports for importing lodash to make tree shaking easier
2020-03-02 22:37:36 +01:00

14 lines
319 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,
}
)
}
}