diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-08-24 04:33:27 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-08-24 04:33:27 +0200 |
commit | a2cabf3f4af9271d8bfdb13c1ae2b7a8b4e6fb88 (patch) | |
tree | b47c76434e800374b628a1dfeff7b8475dbbc006 /config/routes.rb | |
parent | 23752639b20abd26eefb199172da9fc3ceae172e (diff) |
Add admin custom CSS setting (#8399)
Fix #3894
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes.rb b/config/routes.rb index 80a8b7b4c..0e54157dc 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -23,6 +23,7 @@ Rails.application.routes.draw do get '.well-known/webfinger', to: 'well_known/webfinger#show', as: :webfinger get 'manifest', to: 'manifests#show', defaults: { format: 'json' } get 'intent', to: 'intents#show' + get 'custom.css', to: 'custom_css#show', as: :custom_css devise_scope :user do get '/invite/:invite_code', to: 'auth/registrations#new', as: :public_invite |