diff options
author | xray7224 <jessica@megworld.co.uk> | 2013-09-03 17:17:07 +0100 |
---|---|---|
committer | Jessica Tallon <jessica@megworld.co.uk> | 2014-07-22 23:13:14 +0100 |
commit | a5682e89602ddc266d05c760a319d7647755f0b4 (patch) | |
tree | 2c9c2185ca8027bab5233c935ba1a5b5164ddef2 /mediagoblin/db | |
parent | 98596dd072597c5d9c474e882f57407817d049f5 (diff) | |
download | mediagoblin-a5682e89602ddc266d05c760a319d7647755f0b4.tar.lz mediagoblin-a5682e89602ddc266d05c760a319d7647755f0b4.tar.xz mediagoblin-a5682e89602ddc266d05c760a319d7647755f0b4.zip |
Support some webfinger API's and real profile and /api/user/<user>/
Diffstat (limited to 'mediagoblin/db')
-rw-r--r-- | mediagoblin/db/models.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mediagoblin/db/models.py b/mediagoblin/db/models.py index 4377f60f..4f5182d6 100644 --- a/mediagoblin/db/models.py +++ b/mediagoblin/db/models.py @@ -148,7 +148,7 @@ class User(Base, UserMixin): "links": { "self": { "href": request.urlgen( - "mediagoblin.federation.profile", + "mediagoblin.federation.user.profile", username=self.username, qualified=True ), |