(self)
| 23 | return self.email |
| 24 | |
| 25 | def get_full_url(self): |
| 26 | site = get_current_site().domain |
| 27 | url = "https://{site}{path}".format(site=site, |
| 28 | path=self.get_absolute_url()) |
| 29 | return url |
| 30 | |
| 31 | class Meta: |
| 32 | ordering = ['-id'] |
nothing calls this directly
no test coverage detected