# frozen_string_literal: true module Serializers # CompanySerializer class CompanySerializer < BaseSerializer extend ActionView::RoutingUrlFor attributes :id, :name, :country, :short_name attribute :logo do |object| object.logo.url end end end