diff options
author | Michael Manfre | 2022-11-22 23:53:02 -0500 |
---|---|---|
committer | GitHub | 2022-11-22 21:53:02 -0700 |
commit | f88efa40d497995a5f645d03f99345c804f808d7 (patch) | |
tree | 1989e2386dba401b2fed981120d779c399110556 /users/models | |
parent | 96f863d5d8ffa2a326a889eb6b0f8c4c11efb200 (diff) | |
download | takahe-f88efa40d497995a5f645d03f99345c804f808d7.tar.gz takahe-f88efa40d497995a5f645d03f99345c804f808d7.tar.bz2 takahe-f88efa40d497995a5f645d03f99345c804f808d7.zip |
Code dedupe Webfinger and fix SystemActor inbox URL
Diffstat (limited to 'users/models')
-rw-r--r-- | users/models/system_actor.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/users/models/system_actor.py b/users/models/system_actor.py index 28ef1a8..c337d78 100644 --- a/users/models/system_actor.py +++ b/users/models/system_actor.py @@ -22,6 +22,9 @@ class SystemActor: self.profile_uri = f"https://{settings.MAIN_DOMAIN}/about/" self.username = "__system__" + def absolute_profile_uri(self): + return self.profile_uri + def generate_keys(self): self.private_key, self.public_key = RsaKeys.generate_keypair() Config.set_system("system_actor_private_key", self.private_key) @@ -39,7 +42,7 @@ class SystemActor: return { "id": self.actor_uri, "type": "Application", - "inbox": self.actor_uri + "/inbox/", + "inbox": self.actor_uri + "inbox/", "preferredUsername": self.username, "url": self.profile_uri, "as:manuallyApprovesFollowers": True, |