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
2018-02-02use Gitlab::UserSettings directly as a singleton instead of ↵Mario de la Ossa
including/extending it
2017-08-31`current_application_settings` belongs on `Gitlab::CurrentSettings`Sean McGivern
The initializers including this were doing so at the top level, so every object loaded after them had a `current_application_settings` method. However, if someone had rack-attack enabled (which was loaded before these initializers), it would try to load the API, and fail, because `Gitlab::CurrentSettings` didn't have that method. To fix this: 1. Don't include `Gitlab::CurrentSettings` at the top level. We do not need `Object.new.current_application_settings` to work. 2. Make `Gitlab::CurrentSettings` explicitly `extend self`, as we already use it like that in several places. 3. Change the initializers to use that new form.
2017-05-25Bugfix: Always use the default language when generating emails.Ruben Davila
There was a race condition issue when the application was generating an email and was using a language that was previously being used in other request.
2017-04-27Rename GitlabMarkdownHelper -> MarkupHelperToon Claes
It does more than solely GitLab Markdown, so rename to MarkupHelper.
2017-04-02Enable Style/Proc cop for rubocopmhasbini
2016-11-06Use method helper instead of add_template_helperbogdanvlviv
2016-08-30remove Ability.abilitieshttp://jneen.net/
2015-11-26Migrate mailers to ActiveJobValery Sizov
2015-08-20Fix Basemailer#can?Douwe Maan
2015-08-19Fix BaseMailer.Douwe Maan
2015-08-19Add BaseMailer to house shared mailer functionality.Douwe Maan