From e539bb16b6f6b838d2f00e9ebc4c2ad6ac28a17e Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Thu, 28 Oct 2021 10:49:07 -0700 Subject: [PATCH] Disable Doorkeeper's new client authentication for passwords This will be removed eventually but figuring this out is not where I'm mentally at right now --- config/initializers/doorkeeper.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/initializers/doorkeeper.rb b/config/initializers/doorkeeper.rb index bfb1b8a..1dd1e44 100644 --- a/config/initializers/doorkeeper.rb +++ b/config/initializers/doorkeeper.rb @@ -17,4 +17,6 @@ Doorkeeper.configure do # Specify what grant flows are enabled in array of Strings. The valid # strings and the flows they enable are: grant_flows %w(authorization_code client_credentials password) + + skip_client_authentication_for_password_grant true end \ No newline at end of file