Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-01-07Switch use of Rack::Request to ActionDispatch::RequestStan Hu
As mentioned in https://gitlab.com/gitlab-org/gitlab-ee/issues/9035#note_129093444, Rails 5 switched ActionDispatch::Request so that it no longer inherits Rack::Request directly. A middleware that uses Rack::Request to read the environment may see stale request parameters if another middleware modifies the environment via ActionDispatch::Request. To be safe, we should be using ActionDispatch::Request everywhere.
2018-12-05Support RSA and ECDSA algorithms in Omniauth JWTMichael Tsyganov
Signed-off-by: Rémy Coutable <remy@rymai.me>
2018-06-01Eliminate constants warnings by:Lin Jen-Shin
* Replace `require` or `require_relative` with `require_dependency` * Remove unneeded `autoload`
2018-04-26Adds spec for omni_auth jwt strategyTiago Botelho