Files
nairobi/app/models/sdg/goal.rb
Senén Rodero Rodríguez cbe84450ac Add Goals seeds and translations
Extracted from the official United Nations Sustainable Development
Goals website [1].

[1] https://www.un.org/sustainabledevelopment/sustainable-development-goals/
2020-12-02 12:38:03 +01:00

12 lines
254 B
Ruby

class SDG::Goal < ApplicationRecord
validates :code, presence: true, uniqueness: true, inclusion: { in: 1..17 }
def title
I18n.t("sdg.goals.goal_#{code}.title")
end
def description
I18n.t("sdg.goals.goal_#{code}.description")
end
end