Skip to content

Commit

Permalink
fix: Fixes auth
Browse files Browse the repository at this point in the history
  • Loading branch information
salehkhazaei committed Jul 29, 2024
1 parent 4c778a8 commit 9eea969
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/auth/db/models.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ package db
import (
"github.com/jackc/pgtype"
"github.com/kaytu-io/kaytu-util/pkg/api"
"github.com/lib/pq"
"gorm.io/gorm"
"time"
)
Expand Down Expand Up @@ -38,7 +39,7 @@ type User struct {
Username string
PhoneNumber string
PhoneVerified bool
Multifactor []string
Multifactor pq.StringArray `gorm:"type:text[]"`
Blocked bool
}

Expand Down

0 comments on commit 9eea969

Please sign in to comment.