Replace the previous WebFinger implementation with a fairly simple forwarder to Bridgy Fed, so that Bridgy Fed will work eventually

This commit is contained in:
Danielle McLean 2018-05-11 13:23:47 +10:00
parent 9f3cbac3c4
commit 46c2224a4f
Signed by untrusted user: 00dani
GPG key ID: D111F8C5A2560F19
2 changed files with 50 additions and 37 deletions

View file

@ -84,7 +84,11 @@ class User(ModelMeta, AbstractUser):
return '{0} {1}'.format(self.first_name, self.last_name)
def get_absolute_url(self):
return self.url
return self.absolute_url
@property
def absolute_url(self):
return self.full_url
@property
def full_url(self):