diff options
author | bob <bcz@cs.brown.edu> | 2019-06-07 19:42:43 -0400 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2019-06-07 19:42:43 -0400 |
commit | e1b7feda380f540e677e69e306d91d6b57ce03e7 (patch) | |
tree | 97f1403f70af28cd541ea73d7526f8fecf927bc0 /src/server/authentication/models/current_user_utils.ts | |
parent | 411a453970d96b145875031ffbecbee9461162fb (diff) |
tree view reordering.
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>(); |