diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-11-12 13:24:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-12 13:24:53 +0100 |
commit | d37f426f95f812b44925e13c00eabb9d1cd76b1f (patch) | |
tree | 31bfcac2f24090d21fae8d85de8c908b44807e71 /config | |
parent | e88f4f5e57e1a941c9e11f3cc34e291bf73394c5 (diff) |
Add back missing glitch-soc admin settings (#1919)
Fixes #1890
Diffstat (limited to 'config')
-rw-r--r-- | config/locales-glitch/en.yml | 3 | ||||
-rw-r--r-- | config/routes.rb | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/config/locales-glitch/en.yml b/config/locales-glitch/en.yml index 4cdc81a24..c559ee0ec 100644 --- a/config/locales-glitch/en.yml +++ b/config/locales-glitch/en.yml @@ -33,6 +33,9 @@ en: title: Enable keybase integration flavour_and_skin: title: Flavour and skin + other: + preamble: Various glitch-soc settings not fitting in other categories. + title: Other outgoing_spoilers: desc_html: When federating toots, add this content warning to toots that do not have one. It is useful if your server is specialized in content other servers might want to have under a Content Warning. Media will also be marked as sensitive. title: Content warning for outgoing toots diff --git a/config/routes.rb b/config/routes.rb index 126eae084..e1068bb58 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -274,6 +274,7 @@ Rails.application.routes.draw do resource :about, only: [:show, :update], controller: 'about' resource :appearance, only: [:show, :update], controller: 'appearance' resource :discovery, only: [:show, :update], controller: 'discovery' + resource :other, only: [:show, :update], controller: 'other' end resources :site_uploads, only: [:destroy] |