An error occurred fetching the project authors.
- 11 Oct, 2018 1 commit
-
-
Yorick Peterse authored
This adds a method to Gitlab::GonHelper called `push_frontend_feature_flag`. This method can be used to easily expose the state of a feature flag to Javascript code. For example, using this method we may write the following controller code: before_action do push_frontend_feature_flag(:vim_bindings) end def index # ... end def edit # ... end In Javascript we can then check the state of the flag as follows: if ( gon.features.vimBindings ) { // ... } Fixes https://gitlab.com/gitlab-org/release/framework/issues/17
-
- 31 May, 2018 1 commit
-
-
Douwe Maan authored
-
- 29 May, 2018 1 commit
-
-
Douwe Maan authored
-
- 24 May, 2018 1 commit
-
-
Rémy Coutable authored
Signed-off-by: Rémy Coutable <remy@rymai.me>
-
- 02 May, 2018 1 commit
-
-
Tim Zallmann authored
-
- 05 Mar, 2018 1 commit
-
-
Kushal Pandya authored
-
- 01 Mar, 2018 1 commit
-
-
Mike Greiling authored
-
- 02 Feb, 2018 1 commit
-
-
Mario de la Ossa authored
-
- 03 Jan, 2018 1 commit
-
-
Tim Zallmann authored
-
- 21 Dec, 2017 2 commits
-
-
Jose Ivan Vargas authored
-
Jose Ivan Vargas authored
-
- 09 Nov, 2017 1 commit
-
-
Tim Zallmann authored
-
- 22 Sep, 2017 1 commit
-
-
Tim Zallmann authored
-
- 07 Sep, 2017 1 commit
-
-
Filipa Lacerda authored
Open the settings section based on the location hash
-
- 05 Sep, 2017 2 commits
-
-
Filipa Lacerda authored
Prepares for i18n
-
Filipa Lacerda authored
-
- 31 Aug, 2017 1 commit
-
-
Sean McGivern authored
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.
-
- 29 Jun, 2017 1 commit
-
-
Mike Greiling authored
-
- 26 May, 2017 2 commits
-
-
Luke "Jared" Bennett authored
-
Luke "Jared" Bennett authored
-
- 21 May, 2017 1 commit
-
-
Luke "Jared" Bennett authored
-
- 18 May, 2017 1 commit
-
-
Luke "Jared" Bennett authored
-
- 05 May, 2017 1 commit
-
-
Luke "Jared" Bennett authored
-
- 28 Apr, 2017 4 commits
-
-
Luke "Jared" Bennett authored
-
Luke "Jared" Bennett authored
-
Luke "Jared" Bennett authored
-
Luke "Jared" Bennett authored
-
- 13 Apr, 2017 1 commit
-
-
Luke "Jared" Bennett authored
-
- 14 Mar, 2017 1 commit
-
-
Sam Rose authored
Use options object to pass params for project endpoint
-
- 07 Mar, 2017 1 commit
-
-
Simon Knox authored
-
- 06 Mar, 2017 2 commits
-
-
Eric Eastwood authored
-
Eric Eastwood authored
- gl_emoji for falling back to image/css-sprite when the browser doesn't support an emoji - Markdown rendering (Banzai filter) - Autocomplete - Award emoji menu - Perceived perf - Immediate response because we now build client-side - Update `digests.json` generation in gemojione rake task to be more useful and include `unicodeVersion` MR: !9437 See issues - #26371 - #27250 - #22474
-
- 01 Mar, 2017 1 commit
-
-
Valery Sizov authored
-
- 23 Feb, 2017 1 commit
-
-
Douwe Maan authored
-
- 23 Jan, 2017 1 commit
-
-
Luke Bennett authored
Added raven and raven-vue plugin, updated gon_helper with data needed for raven and created raven_config, required by application.js Added is_production to define sentry environment Removed as much jQuery as possible Added public_sentry_dsn application_settings helper method Use URI module instead of regex for public dsn Removed raven-vue and load raven on if sentry is enabled Add load_script spec added raven_config spec added class_spec_helper and tests added sentry_helper spec added feature spec
-
- 09 Jan, 2017 1 commit
-
-
Clement Ho authored
-
- 14 Dec, 2016 1 commit
-
-
Munken authored
-
- 19 Sep, 2016 1 commit
-
-
Nick Thomas authored
-
- 19 Jul, 2016 1 commit
-
-
Connor Shea authored
Add a test to make sure the help page UI path doesn't break in the future. Fix #19972 and #19889.
-
- 28 Jun, 2016 1 commit
-
-
Paco Guzman authored
In any case if just want the value which is always ‘gitlab’ require 'benchmark/ips' Project.first # To load database things GitlabIssueTrackerService.first # To load database things Benchmark.ips do |x| x.config(:time => 5, :warmup => 2) x.report("current") do Project.new.default_issue_tracker.to_param end x.report("") do 'gitlab' end x.compare! end Calculating ------------------------------------- current 4.000 i/100ms 30.938k i/100ms ------------------------------------------------- current 47.298 (±10.6%) i/s - 232.000 4.366M (±20.9%) i/s - 17.202M Comparison: : 4366456.0 i/s current: 47.3 i/s - 92318.26x slower
-