(self)
| 176 | return True |
| 177 | |
| 178 | def _assert_permission(self): |
| 179 | self._assert_auth() |
| 180 | if self._session.username != self.username: |
| 181 | raise exceptions.Unauthorized("You need to be authenticated as the profile owner to do this.") |
| 182 | |
| 183 | @property |
| 184 | def url(self): |
no test coverage detected