equal
deleted
inserted
replaced
152 def address(self): |
152 def address(self): |
153 """The Account's EmailAddress instance.""" |
153 """The Account's EmailAddress instance.""" |
154 return self._addr |
154 return self._addr |
155 |
155 |
156 @property |
156 @property |
157 def domain_directory(self): |
157 def domain(self): |
158 """The directory of the domain the Account belongs to.""" |
158 """The Domain to which the Account belongs to.""" |
159 if self._domain: |
159 if self._domain: |
160 return self._domain.directory |
160 return self._domain |
161 return None |
161 return None |
162 |
162 |
163 @property |
163 @property |
164 def gid(self): |
164 def gid(self): |
165 """The Account's group ID.""" |
165 """The Account's group ID.""" |