Skip to content

Commit

Permalink
feat (api) add socialLogin and socialRegister events support for …
Browse files Browse the repository at this point in the history
…User service
  • Loading branch information
vengrov committed Mar 28, 2016
1 parent 8ce9088 commit 2565fb7
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/server-code/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,10 @@ addEvent(220, 'beforeRemoveBulk', USER, ['whereClause']);
addEvent(221, 'afterRemoveBulk', USER, ['whereClause', 'result']);
addEvent(222, 'beforeEmailConfirmed', USER, ['confirmationKey']);
addEvent(223, 'afterEmailConfirmed', USER, ['confirmationKey', 'result']);
addEvent(224, 'beforeSocialLogin', USER, ['userProperties', 'notary']);
addEvent(225, 'afterSocialLogin', USER, ['userProperties', 'notary', 'result']);
addEvent(226, 'beforeSocialRegister', USER, ['userProperties', 'notary']);
addEvent(227, 'afterSocialRegister', USER, ['userProperties', 'notary', 'result']);

//Media Service Events
addEvent(300, 'acceptConnection', MEDIA, ['operationName', 'tubeName', 'accessGranted']);
Expand Down

0 comments on commit 2565fb7

Please sign in to comment.