mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
FIX: Don't log validation errors for sso
This commit is contained in:
parent
39863953cd
commit
f0552af5f1
2 changed files with 6 additions and 4 deletions
|
@ -112,6 +112,8 @@ class SessionController < ApplicationController
|
|||
else
|
||||
render text: I18n.t("sso.not_found"), status: 500
|
||||
end
|
||||
rescue ActiveRecord::RecordInvalid => e
|
||||
render text: I18n.t("sso.unknown_error"), status: 500
|
||||
rescue => e
|
||||
details = {}
|
||||
SingleSignOn::ACCESSORS.each do |a|
|
||||
|
|
|
@ -1345,10 +1345,10 @@ en:
|
|||
user: 'Users'
|
||||
|
||||
sso:
|
||||
not_found: "Unable to lookup or create account, contact site admin"
|
||||
account_not_approved: "Account is pending approval, you will receive an email notification once approved"
|
||||
unknown_error: "Error updating information, contact site admin"
|
||||
timeout_expired: "Account login timed out, please try logging in again"
|
||||
not_found: "Your account couldn't be found. Please contact the site's administrator."
|
||||
account_not_approved: "Your account is pending approval. You will receive an email notification when you are approved."
|
||||
unknown_error: "There is a problem with your account. Please contact the site's administrator."
|
||||
timeout_expired: "Account login timed out, please try logging in again."
|
||||
|
||||
original_poster: "Original Poster"
|
||||
most_posts: "Most Posts"
|
||||
|
|
Loading…
Reference in a new issue