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
2023-02-14Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2021-05-04Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2020-06-08Add latest changes from gitlab-org/gitlab@masterGitLab Bot
2019-05-20Fix typos in the whole gitlab-ce projectYoginth
2018-10-22Enable frozen string for lib/gitlab/*.rbgfyoung
2017-11-16Don't add a trailing slash in group redirectsSean McGivern
Because we ignored the format, a request to `/groups/foo/labels.json` would redirect to `/groups/foo/-/labels/.json`. But really, it's worse than that, because unless the request contained a trailing slash, we shouldn't add one. Now, we only _keep_ a trailing slash, but don't _add_ one.
2017-11-07Check redirecting with a querystringBob Van Landuyt
2017-11-07Free up some group reserved wordsBob Van Landuyt
2017-11-07Add helper methods to redirect legacy pathsBob Van Landuyt
2017-07-09Also inject new route helpers into includers of GitlabRoutingHelperDouwe Maan
2017-07-07Include new URL helpers retroactively into includers of Gitlab::RoutingDouwe Maan
2016-12-13Make it possible to mix `Gitlab::Routing` inGrzegorz Bizon
2016-04-01Added & use Gitlab::Routing for URL helpersYorick Peterse
Rails' "url_helpers" method creates an anonymous Module (which a bunch of methods) on every call. By caching the output of this method in a dedicated method we can shave off about 10 seconds of loading time for an issue with around 200 comments.