gitlab-org--gitlab-foss/app/serializers/request_aware_entity.rb

16 lines
253 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-28 12:32:07 +00:00
module RequestAwareEntity
extend ActiveSupport::Concern
included do
include Gitlab::Routing
include GitlabRoutingHelper
include Gitlab::Allowable
end
def request
options.fetch(:request)
end
2016-10-28 12:32:07 +00:00
end