Fix incorrect deprecation warning for DELETE /api/v1/suggestions/:id (#34397)
This commit is contained in:
@@ -4,7 +4,7 @@ class Api::V1::SuggestionsController < Api::BaseController
|
|||||||
include Authorization
|
include Authorization
|
||||||
include DeprecationConcern
|
include DeprecationConcern
|
||||||
|
|
||||||
deprecate_api '2021-05-16'
|
deprecate_api '2021-05-16', only: [:index]
|
||||||
|
|
||||||
before_action -> { doorkeeper_authorize! :read, :'read:accounts' }, only: :index
|
before_action -> { doorkeeper_authorize! :read, :'read:accounts' }, only: :index
|
||||||
before_action -> { doorkeeper_authorize! :write, :'write:accounts' }, except: :index
|
before_action -> { doorkeeper_authorize! :write, :'write:accounts' }, except: :index
|
||||||
|
|||||||
Reference in New Issue
Block a user