Welcome to mirror list, hosted at ThFree Co, Russian Federation.

group_api_helpers.rb « helpers « support « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 56c4cc121a7c5449a35ed2cbd5bae65373152305 (plain)
1
2
3
4
5
6
7
8
9
10
11
# frozen_string_literal: true

module GroupAPIHelpers
  extend self

  def attributes_for_group_api(params = {})
    # project_creation_level and subgroup_creation_level are Integers in the model
    # but are strings in the API
    attributes_for(:group, params).except(:project_creation_level, :subgroup_creation_level)
  end
end