mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
14 lines
232 B
Ruby
14 lines
232 B
Ruby
class Problem < ActiveRecord::Base
|
|
has_one :translation
|
|
delegate :title, :content, to: :translation
|
|
|
|
has_many :translations, inverse_of: :problem
|
|
|
|
self.per_page = 50
|
|
|
|
def is_translated?
|
|
!!self.translation
|
|
end
|
|
|
|
end
|