Extracted from the official United Nations Sustainable Development Goals website [1]. [1] https://www.un.org/sustainabledevelopment/sustainable-development-goals/
12 lines
254 B
Ruby
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
|