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

builder.rb « api_authentication « gitlab « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 717c664826ad2a45d2bd4dc1790348692deeecbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

# Authentication Strategies Builder
#
# AuthBuilder and its child classes, TokenType and SentThrough, support
# declaring allowed authentication strategies with patterns like
# `accept.token_type(:job_token).sent_through(:http_basic)`.
module Gitlab
  module APIAuthentication
    class Builder
      def build
        strategies = Hash.new([])
        yield ::Gitlab::APIAuthentication::TokenTypeBuilder.new(strategies)
        strategies
      end
    end
  end
end