diff options
author | Claire <claire.github-309c@sitedethib.com> | 2022-01-28 14:24:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-28 14:24:37 +0100 |
commit | f5639e1cbe0eb9de88a8f4b1c82833fdcffe62b8 (patch) | |
tree | a04a12f1e173a2e89ad6e3cfa670655e89e9b1d7 /app | |
parent | e38fc319dc6897ca867a509b0c7a5878d34d0f00 (diff) |
Change public profile pages to be disabled for unconfirmed users (#17385)
Fixes #17382 Note that unconfirmed and unapproved accounts can still be searched for and their (empty) account retrieved using the REST API.
Diffstat (limited to 'app')
-rw-r--r-- | app/controllers/concerns/account_owned_concern.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/controllers/concerns/account_owned_concern.rb b/app/controllers/concerns/account_owned_concern.rb index 62e379846..25149d03f 100644 --- a/app/controllers/concerns/account_owned_concern.rb +++ b/app/controllers/concerns/account_owned_concern.rb @@ -8,6 +8,7 @@ module AccountOwnedConcern before_action :set_account, if: :account_required? before_action :check_account_approval, if: :account_required? before_action :check_account_suspension, if: :account_required? + before_action :check_account_confirmation, if: :account_required? end private @@ -28,6 +29,10 @@ module AccountOwnedConcern not_found if @account.local? && @account.user_pending? end + def check_account_confirmation + not_found if @account.local? && !@account.user_confirmed? + end + def check_account_suspension if @account.suspended_permanently? permanent_suspension_response |