summaryrefslogtreecommitdiffstats
path: root/vendor/github.com/lafriks
Commit message (Collapse)AuthorAgeFilesLines
* Simplify Gothic to use our session store instead of creating a different ↵zeripath2021-11-039-578/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | store (#17507) * Simplify Gothic to use our session store instead of creating a different store We have been using xormstore to provide a separate session store for our OAuth2 logins however, this relies on using gorilla context and some doubling of our session storing. We can however, simplify and simply use our own chi-based session store. Thus removing a cookie and some of the weirdness with missing contexts. Signed-off-by: Andrew Thornton <art27@cantab.net> * as per review Signed-off-by: Andrew Thornton <art27@cantab.net> * as per review Signed-off-by: Andrew Thornton <art27@cantab.net> * Handle MaxTokenLength Signed-off-by: Andrew Thornton <art27@cantab.net> * oops Signed-off-by: Andrew Thornton <art27@cantab.net> Co-authored-by: techknowlogick <techknowlogick@gitea.io> Co-authored-by: Lauris BH <lauris@nix.lv>
* Vendor Update (#14696)65432021-02-162-130/+45
| | | | | | | | | | | | | * github.com/yuin/goldmark v1.3.1 -> v1.3.2 * github.com/xanzy/go-gitlab v0.42.0 -> v0.44.0 * github.com/prometheus/client_golang v1.8.0 -> v1.9.0 * github.com/minio/minio-go v7.0.7 -> v7.0.9 * github.com/lafriks/xormstore v1.3.2 -> v1.4.0 Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
* Upgrade xorm to v0.8.0 (#8536)Lunny Xiao2019-10-173-26/+4
|
* Upgrade xorm to v0.7.9 to fix some bugs (#8354)Lunny Xiao2019-10-022-4/+3
| | | | | | * upgrade xorm to v0.7.9 to fix some bugs * upgrade xormstore to v1.3.1
* Update to github.com/lafriks/xormstore@v1.3.0 (#8317)Antoine GIRARD2019-10-022-76/+28
|
* Update github.com/lafriks/xormstore and tidy up mod.go (#8020)guillep2k2019-08-282-14/+94
|
* Update to xorm@v0.7.4 (#7596)Tamal Saha2019-07-255-128/+187
| | | Signed-off-by: Tamal Saha <tamal@appscode.com>
* Use Go1.11 module (#5743)Mura Li2019-03-276-0/+265
| | | | | | | | | | | | | | | | | | * Migrate to go modules * make vendor * Update mvdan.cc/xurls * make vendor * Update code.gitea.io/git * make fmt-check * Update github.com/go-sql-driver/mysql * make vendor
* Migrate to dep (#3972)Antoine GIRARD2018-05-214-243/+0
| | | | | | | | | | | | * Update makefile to use dep * Migrate to dep * Fix some deps * Try to find a better version for golang.org/x/net * Try to find a better version for golang.org/x/oauth2
* Update xormstore dependency to fix OAuth2 support for MySQL (#3955)Lauris BH2018-05-131-1/+1
|
* Store OAuth2 session data in database (#3660)Lauris BH2018-04-297-0/+573
* Store OAuth2 session data in database * Rename table to `oauth2_session` and do not skip xormstorage initialization error