2021-11-18 22:05:49 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module CustomerRelations
|
|
|
|
module Contacts
|
|
|
|
class BaseService < ::BaseGroupService
|
|
|
|
private
|
|
|
|
|
|
|
|
def allowed?
|
2021-12-11 22:18:48 +05:30
|
|
|
current_user&.can?(:admin_crm_contact, group)
|
2021-11-18 22:05:49 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def error(message)
|
|
|
|
ServiceResponse.error(message: Array(message))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|