# frozen_string_literal: true module Serializers # CompanySerializer class CompanySerializer < BaseSerializer attributes :id, :name, :country, :short_name attribute :logo do |object| url_for(object.logo) end end end