31 lines
763 B
Ruby
31 lines
763 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module CustomerRelations
|
||
|
module Organizations
|
||
|
class CreateService < BaseService
|
||
|
# returns the created organization
|
||
|
def execute
|
||
|
return error_no_permissions unless allowed?
|
||
|
|
||
|
params[:group_id] = group.id
|
||
|
|
||
|
organization = Organization.create(params)
|
||
|
|
||
|
return error_creating(organization) unless organization.persisted?
|
||
|
|
||
|
ServiceResponse.success(payload: organization)
|
||
|
end
|
||
|
|
||
|
private
|
||
|
|
||
|
def error_no_permissions
|
||
|
error('You have insufficient permissions to create an organization for this group')
|
||
|
end
|
||
|
|
||
|
def error_creating(organization)
|
||
|
error(organization&.errors&.full_messages || 'Failed to create organization')
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|