Show More
@@ -1,14 +1,31 b'' | |||
|
1 | # Copyright (C) 2016-2016 RhodeCode GmbH | |
|
2 | # | |
|
3 | # This program is free software: you can redistribute it and/or modify | |
|
4 | # it under the terms of the GNU Affero General Public License, version 3 | |
|
5 | # (only), as published by the Free Software Foundation. | |
|
6 | # | |
|
7 | # This program is distributed in the hope that it will be useful, | |
|
8 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|
9 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|
10 | # GNU General Public License for more details. | |
|
11 | # | |
|
12 | # You should have received a copy of the GNU Affero General Public License | |
|
13 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
|
14 | # | |
|
15 | # This program is dual-licensed. If you wish to learn more about the | |
|
16 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
|
17 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
|
1 | 18 | |
|
2 | 19 | from zope.interface import implementer |
|
3 | 20 | from rhodecode.interfaces import IUserRegistered |
|
4 | 21 | |
|
5 | 22 | |
|
6 | 23 | @implementer(IUserRegistered) |
|
7 | 24 | class UserRegistered(object): |
|
8 | 25 | """ |
|
9 | 26 | An instance of this class is emitted as an :term:`event` whenever a user |
|
10 | 27 | account is registered. |
|
11 | 28 | """ |
|
12 | 29 | def __init__(self, user, session): |
|
13 | 30 | self.user = user |
|
14 | 31 | self.session = session |
@@ -1,11 +1,28 b'' | |||
|
1 | # Copyright (C) 2016-2016 RhodeCode GmbH | |
|
2 | # | |
|
3 | # This program is free software: you can redistribute it and/or modify | |
|
4 | # it under the terms of the GNU Affero General Public License, version 3 | |
|
5 | # (only), as published by the Free Software Foundation. | |
|
6 | # | |
|
7 | # This program is distributed in the hope that it will be useful, | |
|
8 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
|
9 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
|
10 | # GNU General Public License for more details. | |
|
11 | # | |
|
12 | # You should have received a copy of the GNU Affero General Public License | |
|
13 | # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
|
14 | # | |
|
15 | # This program is dual-licensed. If you wish to learn more about the | |
|
16 | # RhodeCode Enterprise Edition, including its added features, Support services, | |
|
17 | # and proprietary license terms, please see https://rhodecode.com/licenses/ | |
|
1 | 18 | |
|
2 | 19 | from zope.interface import Attribute, Interface |
|
3 | 20 | |
|
4 | 21 | |
|
5 | 22 | class IUserRegistered(Interface): |
|
6 | 23 | """ |
|
7 | 24 | An event type that is emitted whenever a new user registers a user |
|
8 | 25 | account. |
|
9 | 26 | """ |
|
10 | 27 | user = Attribute('The user object.') |
|
11 | 28 | session = Attribute('The session while processing the register form post.') |
General Comments 0
You need to be logged in to leave comments.
Login now