diff options
author | Fawn <fangrui_tong@brown.edu> | 2019-06-15 17:28:06 -0400 |
---|---|---|
committer | Fawn <fangrui_tong@brown.edu> | 2019-06-15 17:28:06 -0400 |
commit | 14ae66aec1879386c130567496597db9105e4f99 (patch) | |
tree | 300f9ac7e153bd404b8b3799fba0f52514861c36 /src/server/authentication/models/current_user_utils.ts | |
parent | b4bd43f6e79c9dec30842262f270ca6122f1184a (diff) | |
parent | 618d3717e118f978de976cb34e8bc2051c726ffc (diff) |
merge with master
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>(); |