29cb161e92
Signed-off-by: Rémy Coutable <remy@rymai.me>
13 lines
301 B
Ruby
13 lines
301 B
Ruby
# == AccessRequestable concern
|
|
#
|
|
# Contains functionality related to objects that can receive request for access.
|
|
#
|
|
# Used by Project, and Group.
|
|
#
|
|
module AccessRequestable
|
|
extend ActiveSupport::Concern
|
|
|
|
def request_access(user)
|
|
Members::RequestAccessService.new(self, user).execute
|
|
end
|
|
end
|