summaryrefslogtreecommitdiffstats
path: root/models/oauth2.go
diff options
context:
space:
mode:
authorskyblue <ssx205@gmail.com>2014-04-03 11:13:35 +0800
committerskyblue <ssx205@gmail.com>2014-04-03 11:13:35 +0800
commitbfdadaa13c5dc289beed8e13c6e0d8a0eabeae37 (patch)
treed6fb7104f038166cd100a37a515b951e1a429159 /models/oauth2.go
parentadf42a5b547e8e738b8b7e795a0863bc1eab58a5 (diff)
downloadgitea-bfdadaa13c5dc289beed8e13c6e0d8a0eabeae37.tar.gz
gitea-bfdadaa13c5dc289beed8e13c6e0d8a0eabeae37.zip
add oauth2 models
Diffstat (limited to 'models/oauth2.go')
-rw-r--r--models/oauth2.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/models/oauth2.go b/models/oauth2.go
new file mode 100644
index 0000000000..70dcd51002
--- /dev/null
+++ b/models/oauth2.go
@@ -0,0 +1,18 @@
+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"`
+}