Skip to content

Commit

Permalink
feat: add intended_for_someone_else error code
Browse files Browse the repository at this point in the history
  • Loading branch information
aeneasr committed Oct 19, 2021
1 parent 3252c10 commit 572a131
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions text/message_error.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ const (
ErrIDAddressNotVerified = "no_verified_address"
ErrIDSessionHasAALAlready = "session_fulfills_aal"
ErrIDSessionRequiredForHigherAAL = "aal_needs_session"
ErrIDHigherAALRequired = "aal_needs_upgrade"
ErrNoActiveSession = "no_active_session"
ErrIDRedirectURLNotAllowed = "`forbidden_return_to`"
ErrIDHigherAALRequired = "aal_needs_upgrade"
ErrNoActiveSession = "no_active_session"
ErrIDRedirectURLNotAllowed = "forbidden_return_to"
ErrIDInitiatedBySomeoneElse = "intended_for_someone_else"

ErrIDCSRF = "csrf_violation"
)

0 comments on commit 572a131

Please sign in to comment.