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

routes_helper.rb « ci « helpers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f22d5023db5df99ae53aa949d6ebc5b89568d730 (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
28
29
module Ci
  module RoutesHelper
    class Base
      include Gitlab::Application.routes.url_helpers

      def default_url_options
        {
          host: Ci::Settings.gitlab_ci['host'],
          protocol: Ci::Settings.gitlab_ci['https'] ? "https" : "http",
          port: Ci::Settings.gitlab_ci['port']
        }
      end
    end

    def url_helpers
      @url_helpers ||= Ci::Base.new
    end

    def self.method_missing(method, *args, &block)
      @url_helpers ||= Ci::Base.new

      if @url_helpers.respond_to?(method)
        @url_helpers.send(method, *args, &block)
      else
        super method, *args, &block
      end
    end
  end
end