0
0
Fork 0

Add read:me OAuth 2.0 scope, allowing more limited access to user data (#29087)

This commit is contained in:
Emelia Smith 2024-04-23 13:47:00 +02:00 committed by GitHub
parent d754b15afb
commit 049b159beb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 17 additions and 1 deletions

View file

@ -1,7 +1,7 @@
# frozen_string_literal: true
class Api::V1::Accounts::CredentialsController < Api::BaseController
before_action -> { doorkeeper_authorize! :read, :'read:accounts' }, except: [:update]
before_action -> { doorkeeper_authorize! :read, :'read:accounts', :'read:me' }, except: [:update]
before_action -> { doorkeeper_authorize! :write, :'write:accounts' }, only: [:update]
before_action :require_user!