diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2022-03-12 04:14:25 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-12 04:14:25 +0100 |
commit | bc320d6cec5900fa2fd9d3a46480e242111caaca (patch) | |
tree | 2606d8af9cc2b7bb66f05ea54ffa4834ad8ebeee /app/controllers | |
parent | 1745b71840036675332f356180aa2d69ad77b0ba (diff) |
Fix `POST /api/v1/emails/confirmations` not being available after sign-up (#17743)
Diffstat (limited to 'app/controllers')
-rw-r--r-- | app/controllers/api/v1/emails/confirmations_controller.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/controllers/api/v1/emails/confirmations_controller.rb b/app/controllers/api/v1/emails/confirmations_controller.rb index f1d9954d0..3faaea2fb 100644 --- a/app/controllers/api/v1/emails/confirmations_controller.rb +++ b/app/controllers/api/v1/emails/confirmations_controller.rb @@ -1,7 +1,7 @@ # frozen_string_literal: true class Api::V1::Emails::ConfirmationsController < Api::BaseController - before_action :doorkeeper_authorize! + before_action -> { doorkeeper_authorize! :write, :'write:accounts' } before_action :require_user_owned_by_application! before_action :require_user_not_confirmed! @@ -19,6 +19,6 @@ class Api::V1::Emails::ConfirmationsController < Api::BaseController end def require_user_not_confirmed! - render json: { error: 'This method is only available while the e-mail is awaiting confirmation' }, status: :forbidden if current_user.confirmed? || current_user.unconfirmed_email.blank? + render json: { error: 'This method is only available while the e-mail is awaiting confirmation' }, status: :forbidden unless !current_user.confirmed? || current_user.unconfirmed_email.present? end end |