0
0
Fork 0

Fix: Mark redirect uris field in Development > Application form as required (#30311)

This commit is contained in:
Emelia Smith 2024-05-16 09:59:46 +02:00 committed by GitHub
parent 356bbbaa7f
commit f0d6dc4519
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 3 additions and 2 deletions

View file

@ -13,7 +13,7 @@ class Settings::ApplicationsController < Settings::BaseController
def new
@application = Doorkeeper::Application.new(
redirect_uri: Doorkeeper.configuration.native_redirect_uri,
scopes: 'read write follow'
scopes: 'read:me'
)
end