unepwcmc/SAPI

View on GitHub
app/serializers/trade/taxon_concept_serializer.rb

Summary

Maintainability
A
0 mins
Test Coverage
class Trade::TaxonConceptSerializer < ActiveModel::Serializer
  attributes :id, :full_name, :author_year, :rank_name

  def full_name
    object.full_name + " (#{object.name_status})"
  end
end