diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-06-06 19:29:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-06 19:29:42 +0200 |
commit | 722d152082a20c96ca6f1db92c172f9d3772d737 (patch) | |
tree | e725bfc2f9688117782bec78bbaa8321a8344877 /config | |
parent | 7623766241862d2ede47558639c357d57b769e3b (diff) |
Fix #3063 - Add dynamic app manifest (#3563)
* Fix #3063 - Add dynamic app manifest * Added short_name * Add background_color
Diffstat (limited to 'config')
-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 7a2286f92..c71c5603c 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -17,6 +17,7 @@ Rails.application.routes.draw do get '.well-known/host-meta', to: 'well_known/host_meta#show', as: :host_meta, defaults: { format: 'xml' } get '.well-known/webfinger', to: 'well_known/webfinger#show', as: :webfinger + get 'manifest', to: 'manifests#show', defaults: { format: 'json' } devise_for :users, path: 'auth', controllers: { sessions: 'auth/sessions', |