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

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

module Gitlab
  module LetsEncrypt
    class Challenge
      def initialize(acme_challenge)
        @acme_challenge = acme_challenge
      end

      delegate :token, :file_content, :status, :request_validation, :error, to: :acme_challenge

      private

      attr_reader :acme_challenge
    end
  end
end