2af53b16b6
Only include needed parts from lodash Don't prefetch Co-authored-by: kolaente <k@knt.li> Reviewed-on: https://kolaente.dev/vikunja/frontend/pulls/288 Co-Authored-By: konrad <konrad@kola-entertainments.de> Co-Committed-By: konrad <konrad@kola-entertainments.de>
13 lines
No EOL
242 B
JavaScript
13 lines
No EOL
242 B
JavaScript
import TeamShareBaseModel from './teamShareBase'
|
|
import merge from 'lodash/merge'
|
|
|
|
export default class TeamNamespaceModel extends TeamShareBaseModel {
|
|
defaults() {
|
|
return merge(
|
|
super.defaults(),
|
|
{
|
|
namespaceId: 0,
|
|
},
|
|
)
|
|
}
|
|
} |