From 6e8770cdb2e04ef1e1e3710743259dd3e34a55f6 Mon Sep 17 00:00:00 2001 From: Reese Armstrong Date: Thu, 25 Jan 2024 20:22:40 -0600 Subject: [PATCH] Remove applications routes from doorkeeper --- config/routes.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/routes.rb b/config/routes.rb index 3edac02..40876ff 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -2,7 +2,9 @@ Rails.application.routes.draw do use_doorkeeper_openid_connect - use_doorkeeper + use_doorkeeper do + skip_controllers :applications, :authorized_applications + end # Define your application routes per the DSL in https://guides.rubyonrails.org/routing.html get "up" => "rails/health#show", :as => :rails_health_check