15 lines
262 B
Ruby
15 lines
262 B
Ruby
module RequestAwareEntity
|
|
extend ActiveSupport::Concern
|
|
|
|
included do
|
|
include Gitlab::Routing.url_helpers
|
|
end
|
|
|
|
def request
|
|
@options.fetch(:request)
|
|
end
|
|
|
|
def can?(object, action, subject)
|
|
Ability.allowed?(object, action, subject)
|
|
end
|
|
end
|