forked from 00dani/lemoncurry
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:
parent
9f3cbac3c4
commit
46c2224a4f
2 changed files with 50 additions and 37 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue