mirror of
https://github.com/overleaf/overleaf.git
synced 2025-04-05 05:28:18 +00:00
Fix an embarassing mistake, generate tokens dynamically, not once.
This commit is contained in:
parent
1500976226
commit
387854db7a
1 changed files with 2 additions and 2 deletions
|
@ -36,11 +36,11 @@ ProjectSchema = new Schema
|
|||
tokens :
|
||||
readOnly : {
|
||||
type: String,
|
||||
default: ProjectTokenGenerator.readOnlyToken()
|
||||
default: () -> ProjectTokenGenerator.readOnlyToken()
|
||||
}
|
||||
readAndWrite : {
|
||||
type: String,
|
||||
default: ProjectTokenGenerator.readAndWriteToken()
|
||||
default: () -> ProjectTokenGenerator.readAndWriteToken()
|
||||
}
|
||||
tokenAccessReadOnly_refs : [ type:ObjectId, ref:'User' ]
|
||||
tokenAccessReadAndWrite_refs : [ type:ObjectId, ref:'User' ]
|
||||
|
|
Loading…
Reference in a new issue