1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2026-01-27 02:28:50 +01:00

Update rails and code

This commit is contained in:
2017-11-23 13:52:13 +01:00
parent 8334baff99
commit 95bb01b440
30 changed files with 340 additions and 152 deletions

View File

@@ -1,4 +1,4 @@
class Admin < ActiveRecord::Base
class Admin < ApplicationRecord
# Include default devise modules. Others available are:
# :confirmable, :lockable, :timeoutable and :omniauthable
devise :database_authenticatable,

View File

@@ -0,0 +1,3 @@
class ApplicationRecord < ActiveRecord::Base
self.abstract_class = true
end

View File

@@ -1,6 +1,6 @@
class Problem < ActiveRecord::Base
class Problem < ApplicationRecord
# TODO Check whether there is a better relation for this
belongs_to :translation
belongs_to :translation, optional: true
delegate :title, :content, to: :translation
has_many :translations, inverse_of: :problem

View File

@@ -1,4 +1,4 @@
class Translation < ActiveRecord::Base
class Translation < ApplicationRecord
belongs_to :problem, inverse_of: :translations
validates :title, :content, :problem_id, presence: true