BigW Consortium Gitlab

request_aware_entity.rb 173 Bytes
Newer Older
1
module RequestAwareEntity
2
  extend ActiveSupport::Concern
3

4 5 6
  included do
    include Gitlab::Routing.url_helpers
  end
7

8 9
  def request
    @options.fetch(:request)
10 11
  end
end