2018-11-18 11:00:15 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
module RequestAwareEntity
|
|
|
|
extend ActiveSupport::Concern
|
|
|
|
|
|
|
|
included do
|
|
|
|
include Gitlab::Routing
|
2017-09-10 17:25:29 +05:30
|
|
|
include GitlabRoutingHelper
|
2017-08-17 22:00:37 +05:30
|
|
|
include Gitlab::Allowable
|
|
|
|
end
|
|
|
|
|
|
|
|
def request
|
2022-10-11 01:57:18 +05:30
|
|
|
options.fetch(:request, nil)
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
end
|