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

get_badges_query.rb « rest « groups « bulk_imports « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 79ffdd9a1f6de14e780aa0184515d7b446f72b7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# frozen_string_literal: true

module BulkImports
  module Groups
    module Rest
      module GetBadgesQuery
        extend self

        def to_h(context)
          encoded_full_path = ERB::Util.url_encode(context.entity.source_full_path)

          {
            resource: ['groups', encoded_full_path, 'badges'].join('/'),
            query: {
              page: context.tracker.next_page
            }
          }
        end
      end
    end
  end
end