From 722d152082a20c96ca6f1db92c172f9d3772d737 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Tue, 6 Jun 2017 19:29:42 +0200 Subject: Fix #3063 - Add dynamic app manifest (#3563) * Fix #3063 - Add dynamic app manifest * Added short_name * Add background_color --- config/routes.rb | 1 + 1 file changed, 1 insertion(+) (limited to 'config') 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', -- cgit