aboutsummaryrefslogtreecommitdiff
path: root/models/oauth2.go
diff options
context:
space:
mode:
author无闻 <joe2010xtmf@163.com>2014-04-04 10:40:14 -0400
committer无闻 <joe2010xtmf@163.com>2014-04-04 10:40:14 -0400
commit3a23476dbef0bb90ce5e8bc4c7ab8929bc04bb1b (patch)
tree8cfb016c545a0b7583fcb7e7acc5a11fc11c20a2 /models/oauth2.go
parent48d3a1fef12242c6f5c1848ca58e02d946a709da (diff)
parent75db79b4b6bcb8f61dd957c9bd21b32d4746f866 (diff)
Merge pull request #61 from gogits/dev
Dev
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 00000000..70dcd510
--- /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"`
+}