2018-03-17 18:26:18 +05:30
|
|
|
# rubocop:disable GitlabSecurity/PublicSend
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
module API
|
|
|
|
module Helpers
|
|
|
|
module MembersHelpers
|
|
|
|
def find_source(source_type, id)
|
2018-03-17 18:26:18 +05:30
|
|
|
public_send("find_#{source_type}!", id) # rubocop:disable GitlabSecurity/PublicSend
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_source!(source_type, source)
|
|
|
|
authorize! :"admin_#{source_type}", source
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|