##// END OF EJS Templates
event: Fire event when user sucessfully registered.
event: Fire event when user sucessfully registered.

File last commit:

r42:d009f1dc default
r43:252626f3 default
Show More
interfaces.py
11 lines | 306 B | text/x-python | PythonLexer
from zope.interface import Attribute, Interface
class IUserRegistered(Interface):
"""
An event type that is emitted whenever a new user registers a user
account.
"""
user = Attribute('The user object.')
session = Attribute('The session while processing the register form post.')