summaryrefslogtreecommitdiff
path: root/lib/api/entities/feature_flag/user_list.rb
blob: bc8b12ea22ed1517fae0816c9b330ec1e9d6935c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# frozen_string_literal: true

module API
  module Entities
    class FeatureFlag < Grape::Entity
      class UserList < Grape::Entity
        include RequestAwareEntity

        expose :id
        expose :iid
        expose :project_id
        expose :created_at
        expose :updated_at
        expose :name
        expose :user_xids

        expose :path do |list|
          project_feature_flags_user_list_path(list.project, list)
        end

        expose :edit_path do |list|
          edit_project_feature_flags_user_list_path(list.project, list)
        end
      end
    end
  end
end