gitlab-org--gitlab-foss/app/helpers/gitlab_routing_helper.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
804 B
Ruby
Raw Normal View History

# frozen_string_literal: true
# Shorter routing method for some project items
module GitlabRoutingHelper
extend ActiveSupport::Concern
2016-04-29 13:14:38 +00:00
include ::ProjectsHelper
include ::ApplicationSettingsHelper
include API::Helpers::RelatedResourcesHelpers
include ::Routing::ProjectsHelper
include ::Routing::Projects::MembersHelper
include ::Routing::Groups::MembersHelper
include ::Routing::MembersHelper
include ::Routing::ArtifactsHelper
include ::Routing::PipelineSchedulesHelper
include ::Routing::SnippetsHelper
include ::Routing::WikiHelper
include ::Routing::GraphqlHelper
include ::Routing::PseudonymizationHelper
include ::Routing::PackagesHelper
included do
Gitlab::Routing.includes_helpers(self)
end
end
GitlabRoutingHelper.include_mod_with('GitlabRoutingHelper')