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: 299a96edee4c435d314ea9c70d4cfbecd0a1eaf2 (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: Settings.gitlab['host'],
          protocol: Settings.gitlab['https'] ? "https" : "http",
          port: Settings.gitlab['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