diff options
| author | Andrew Godwin | 2022-11-20 18:29:19 -0700 |
|---|---|---|
| committer | Andrew Godwin | 2022-11-20 18:29:19 -0700 |
| commit | 5ddce16213a8e7b4e9d052a14ed8d7e37ac5f068 (patch) | |
| tree | f6bfb8d8e0fe6e00a30125ba4b6076426c56bcf2 /core/models | |
| parent | bed5c7ffaa184fd6146df17279fc2b96f9d02944 (diff) | |
| download | takahe-5ddce16213a8e7b4e9d052a14ed8d7e37ac5f068.tar.gz takahe-5ddce16213a8e7b4e9d052a14ed8d7e37ac5f068.tar.bz2 takahe-5ddce16213a8e7b4e9d052a14ed8d7e37ac5f068.zip | |
Add a system actor to sign outgoing S2S GETs
Diffstat (limited to 'core/models')
| -rw-r--r-- | core/models/config.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/models/config.py b/core/models/config.py index ffe7172..d69205c 100644 --- a/core/models/config.py +++ b/core/models/config.py @@ -154,6 +154,9 @@ class Config(models.Model): version: str = __version__ + system_actor_public_key: str = "" + system_actor_private_key: str = "" + site_name: str = "Takahē" highlight_color: str = "#449c8c" site_about: str = "<h2>Welcome!</h2>\n\nThis is a community running Takahē." |
