Module: FeatureFlagsHelper

Includes:
API::Helpers::RelatedResourcesHelpers
Defined in:
app/helpers/feature_flags_helper.rb

Instance Method Summary collapse

Methods included from API::Helpers::RelatedResourcesHelpers

#expose_path, #expose_url, #issues_available?, #mrs_available?, #project_feature_string_access_level

Instance Method Details

#edit_feature_flag_dataObject



14
15
16
17
18
19
20
21
22
23
24
25
26
# File 'app/helpers/feature_flags_helper.rb', line 14

def edit_feature_flag_data
  {
    endpoint: project_feature_flag_path(@project, @feature_flag),
    project_id: @project.id,
    feature_flags_path: project_feature_flags_path(@project),
    environments_endpoint: search_project_environments_path(@project, format: :json),
    strategy_type_docs_page_path: help_page_path('operations/feature_flags', anchor: 'feature-flag-strategies'),
    environments_scope_docs_path: help_page_path(
      'ci/environments/index.md',
      anchor: 'limit-the-environment-scope-of-a-cicd-variable'
    )
  }
end

#unleash_api_instance_id(project) ⇒ Object



10
11
12
# File 'app/helpers/feature_flags_helper.rb', line 10

def unleash_api_instance_id(project)
  project.feature_flags_client_token
end

#unleash_api_url(project) ⇒ Object



6
7
8
# File 'app/helpers/feature_flags_helper.rb', line 6

def unleash_api_url(project)
  expose_url(api_v4_feature_flags_unleash_path(project_id: project.id))
end