diff options
author | zeripath <art27@cantab.net> | 2021-11-03 00:33:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-03 08:33:54 +0800 |
commit | 9d855bd6a1da51a656bede3a855b2cecc6a22f28 (patch) | |
tree | ac34d3039edafd1c8d7814e3ede09f1e22372073 /vendor/modules.txt | |
parent | 95da01c5cd946d6e6ba0b0110676d3df36ce85db (diff) | |
download | gitea-9d855bd6a1da51a656bede3a855b2cecc6a22f28.tar.gz gitea-9d855bd6a1da51a656bede3a855b2cecc6a22f28.zip |
Simplify Gothic to use our session store instead of creating a different 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>
Diffstat (limited to 'vendor/modules.txt')
-rw-r--r-- | vendor/modules.txt | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/vendor/modules.txt b/vendor/modules.txt index b8967eae2f..b34531f259 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -463,9 +463,6 @@ github.com/google/go-querystring/query # github.com/google/uuid v1.2.0 ## explicit github.com/google/uuid -# github.com/gorilla/context v1.1.1 -## explicit -github.com/gorilla/context # github.com/gorilla/css v1.0.0 github.com/gorilla/css/scanner # github.com/gorilla/feeds v1.1.1 @@ -564,10 +561,6 @@ github.com/klauspost/pgzip github.com/kr/pretty # github.com/kr/text v0.2.0 github.com/kr/text -# github.com/lafriks/xormstore v1.4.0 -## explicit -github.com/lafriks/xormstore -github.com/lafriks/xormstore/util # github.com/lib/pq v1.10.2 ## explicit github.com/lib/pq |