mirror of https://github.com/gogits/gogs.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
416 B
18 lines
416 B
package models |
|
|
|
import "time" |
|
|
|
// OT: Oauth2 Type |
|
const ( |
|
OT_GITHUB = iota + 1 |
|
OT_GOOGLE |
|
OT_TWITTER |
|
) |
|
|
|
type Oauth2 struct { |
|
Uid int64 `xorm:"pk"` // userId |
|
Type int `xorm:"pk unique(oauth)"` // twitter,github,google... |
|
Identity string `xorm:"pk unique(oauth)"` // id.. |
|
Token string `xorm:"VARCHAR(200) not null"` |
|
RefreshTime time.Time `xorm:"created"` |
|
}
|
|
|