From 72514a07b9612ea7d609429e1e4b1ca51e11bc33 Mon Sep 17 00:00:00 2001 From: Effy Elden Date: Thu, 26 Jan 2017 18:59:35 +1100 Subject: [PATCH] Add redirect for /admin => /admin/settings --- config/routes.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/routes.rb b/config/routes.rb index 15fb924f11..9423a0ae28 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -68,6 +68,8 @@ Rails.application.routes.draw do end end + get '/admin', to: redirect('/admin/settings', status: 302) + namespace :api do # PubSubHubbub outgoing subscriptions resources :subscriptions, only: [:show]