two_factor.go 470 B

1234567891011121314151617181920
  1. // Copyright 2017 The Gogs Authors. All rights reserved.
  2. // Use of this source code is governed by a MIT-style
  3. // license that can be found in the LICENSE file.
  4. package errors
  5. import "fmt"
  6. type TwoFactorNotFound struct {
  7. UserID int64
  8. }
  9. func IsTwoFactorNotFound(err error) bool {
  10. _, ok := err.(TwoFactorNotFound)
  11. return ok
  12. }
  13. func (err TwoFactorNotFound) Error() string {
  14. return fmt.Sprintf("two-factor authentication does not found [user_id: %d]", err.UserID)
  15. }