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

request_aware_entity.rb « serializers « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ff8c1142abc114809dc57354197d7b46d602a35c (plain)
1
2
3
4
5
6
7
8
9
10
11
module RequestAwareEntity
  extend ActiveSupport::Concern

  included do
    include Gitlab::Routing.url_helpers
  end

  def request
    @options.fetch(:request)
  end
end