1
0

Use deep imports for importing lodash to make tree shaking easier

This commit is contained in:
kolaente
2020-03-02 22:37:36 +01:00
parent aeba5651af
commit 3c3767a91e
9 changed files with 12 additions and 9 deletions

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 {