diff options
author | yipstanley <stanley_yip@brown.edu> | 2019-06-12 14:41:57 -0400 |
---|---|---|
committer | yipstanley <stanley_yip@brown.edu> | 2019-06-12 14:41:57 -0400 |
commit | 188033d3b013326b3233cd9ce33793e7561e03a6 (patch) | |
tree | ad5bd29dd114986c59697526b5d3202ed7be7c22 /src/server/authentication/models/current_user_utils.ts | |
parent | 9ec4a529dc886acca8f147cfe913e60f938f3bda (diff) | |
parent | a638c12cde39a3ea5193a8038f72a55d706d9af8 (diff) |
nice!
Diffstat (limited to 'src/server/authentication/models/current_user_utils.ts')
-rw-r--r-- | src/server/authentication/models/current_user_utils.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/server/authentication/models/current_user_utils.ts b/src/server/authentication/models/current_user_utils.ts index e5b7a025b..816c5f269 100644 --- a/src/server/authentication/models/current_user_utils.ts +++ b/src/server/authentication/models/current_user_utils.ts @@ -29,6 +29,7 @@ export class CurrentUserUtils { private static createUserDocument(id: string): Doc { let doc = new Doc(id, true); doc.viewType = CollectionViewType.Tree; + doc.dropAction = "alias"; doc.layout = CollectionView.LayoutString(); doc.title = this.email; doc.data = new List<Doc>(); |