-
Notifications
You must be signed in to change notification settings - Fork 2
Events Emitted in the system
amrdraz edited this page Jan 2, 2015
·
1 revision
Kodr uses an observer model to decouple and notify other modules of actions on the system
- on req
/signup
auser.signup
event is emitted passing user. - on req
/verify
auser.verified
event is emitted passing user.
- on
user.signup
a verification email is sent - on
user.signup
an email is sent to the admin notifying him that a new user was created
- on
user.signup
an activity is created with action "signedup" and the user as subject - on
user.verified
an activity is created with action "verified" and the user as subject