1
0
Fork 0
forked from OpenNeo/impress
impress/app/models/species.rb

35 lines
908 B
Ruby
Raw Normal View History

class Species < ApplicationRecord
translates # TODO: Remove once we're all done with translations!
has_many :pet_types
has_many :alt_styles
scope :alphabetical, -> { order(:name) }
scope :with_body_id, -> body_id {
pt = PetType.arel_table
joins(:pet_types).where(pt[:body_id].eq(body_id)).limit(1)
}
# Temporary writer to keep the English translation record updated, while
# primarily using the attribute on the model itself.
#
# Once this app and DTI 2020 are both comfortably off the translation system,
# we can remove this!
def name=(new_name)
globalize.write(:en, :name, new_name)
write_attribute(:name, new_name)
end
2013-01-21 12:55:48 -08:00
def as_json(options={})
super({only: [:id, :name], methods: [:human_name]}.merge(options))
end
2013-01-21 12:55:48 -08:00
def human_name
2013-02-15 21:57:06 -08:00
if name
name.capitalize
else
I18n.translate('species.default_human_name')
end
2013-01-21 12:55:48 -08:00
end
end