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
2020-08-20Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot
2019-06-27Reorganize feature flag documentationMarin Jankovski
Split the FF docs in 3 separate docs to cover 3 different use-cases.
2019-06-07Add section to dev docs on accessing chatopsLucas Charles
closes 62127
2019-05-27Use relative URLs in development docsAchilleas Pipinellis
This is part of https://gitlab.com/gitlab-org/gitlab-ce/issues/61945
2019-05-17Link to testing guide for feature flag spec infoLuke Duncalfe
In order for there to be a single source of truth.
2019-03-01Replace issue with a link to the featureMichael Kozono
2019-02-18Remove consecutive blank lines from markdown filesEvan Read
For the sake of consistency, removes any extraneous consecutive blank lines from the doc suite.
2018-12-06Add section about enabling feature flag in developmentClement Ho
2018-11-16Fix typos in docsGeorge Tsiolis
2018-10-24Add instructions on how to enable a feature flagFilipa Lacerda
2018-10-11Support pushing of feature flags to the frontendYorick Peterse
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
2018-09-18Document the need for feature flagsYorick Peterse
This adds a development guide explaining that we are going to use feature flags more often, why, what the benefits are, and so on. See https://gitlab.com/gitlab-org/gitlab-ce/issues/49619 for more information.
2018-09-05add 'default_enabled' to feature flagsBrett Walker
This allows you to default a feature flag to 'on' when checking whether it's enabled/disabled.
2018-08-22Fixed `stub_feature_flag behavior` for `disabled?` flags.Gabriel Mazetto
Previous code would not work with `disabled?` because that method would send two parameters (second always `nil`) which we are not mocking. Instead of mock yet another state, I decide to fix it where it belongs.
2018-08-15Add Acceptance testing issue templateZeger-Jan van de Weg
2018-02-14clarify what kind of feature flags we supportJob van der Voort
2017-07-07Don't use Flipper for the Performance BarRémy Coutable
The implementation now simply rely on the `performance_bar_allowed_group_id` Application Setting. Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-06Improve Features API and its docs and add a Changelog itemRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-07-06Document the feature groupsRémy Coutable
Signed-off-by: Rémy Coutable <remy@rymai.me>
2017-06-01Add feature toggles through FlipperAlejandro Rodríguez