Revert "Use deep imports for importing lodash to make tree shaking easier"

This reverts commit 3c3767a9
This commit is contained in:
kolaente 2020-03-03 21:02:13 +01:00
parent 3c3767a91e
commit fe6c859150
Signed by untrusted user who does not match committer: konrad
GPG key ID: F40E70337AB24C9B
9 changed files with 9 additions and 12 deletions

View file

@ -1,6 +1,4 @@
import defaults from 'lodash'
import omitBy from 'lodash'
import isNil from 'lodash'
import {defaults, omitBy, isNil} from 'lodash'
export default class AbstractModel {

View file

@ -1,5 +1,5 @@
import TeamShareBaseModel from './teamShareBase'
import merge from 'lodash'
import {merge} from 'lodash'
export default class TeamListModel extends TeamShareBaseModel {
defaults() {

View file

@ -1,5 +1,5 @@
import UserModel from './user'
import merge from 'lodash'
import {merge} from 'lodash'
export default class TeamMemberModel extends UserModel {
defaults() {

View file

@ -1,5 +1,5 @@
import TeamShareBaseModel from './teamShareBase'
import merge from 'lodash'
import {merge} from 'lodash'
export default class TeamNamespaceModel extends TeamShareBaseModel {
defaults() {

View file

@ -1,5 +1,5 @@
import UserShareBaseModel from './userShareBase'
import merge from 'lodash'
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 {

View file

@ -1,5 +1,5 @@
import UserShareBaseModel from "./userShareBase";
import merge from 'lodash'
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 {