mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-04 17:19:47 -04:00
commit
e89e1154bf
1 changed files with 1 additions and 1 deletions
|
@ -18,7 +18,6 @@ UserSchema.pre('init', (next) ->
|
|||
for prop, sch of jsonschema.properties
|
||||
continue if prop is 'emails' # defaults may change, so don't carry them over just yet
|
||||
@set(prop, sch.default) if sch.default?
|
||||
@set('permissions', ['admin']) if not isProduction
|
||||
next()
|
||||
)
|
||||
|
||||
|
@ -108,6 +107,7 @@ UserSchema.pre('save', (next) ->
|
|||
@set('password', undefined)
|
||||
if @get('email') and @get('anonymous')
|
||||
@set('anonymous', false)
|
||||
@set('permissions', ['admin']) if not isProduction
|
||||
data =
|
||||
email_id: sendwithus.templates.welcome_email
|
||||
recipient:
|
||||
|
|
Loading…
Add table
Reference in a new issue