Skip to content

Commit

Permalink
rubocop
Browse files Browse the repository at this point in the history
  • Loading branch information
bramleyjl committed Apr 17, 2024
1 parent 98c4a34 commit fa256b1
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,11 @@ def sign_in
end

def authn_context
user_verification.credential_type == SignIn::Constants::Auth::IDME ? SignIn::Constants::Auth::IDME_LOA3 :
SignIn::Constants::Auth::LOGIN_GOV_IAL2
if user_verification.credential_type == SignIn::Constants::Auth::IDME
SignIn::Constants::Auth::IDME_LOA3
else
SignIn::Constants::Auth::LOGIN_GOV_IAL2
end
end

def session
Expand Down

0 comments on commit fa256b1

Please sign in to comment.