mirror of
https://github.com/mentos1386/zdravko.git
synced 2025-02-16 22:13:38 +00:00
fix(oauth2): id is int for github
This commit is contained in:
parent
7b94c72f87
commit
9e237a0b71
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ import (
|
||||||
)
|
)
|
||||||
|
|
||||||
type UserInfo struct {
|
type UserInfo struct {
|
||||||
Id string `json:"id"`
|
Id int64 `json:"id"` // FIXME: This might not always be int?
|
||||||
Sub string `json:"sub"`
|
Sub string `json:"sub"`
|
||||||
Email string `json:"email"`
|
Email string `json:"email"`
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue