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:
@@ -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,
|
||||
|
||||
3
app/models/application_record.rb
Normal file
3
app/models/application_record.rb
Normal file
@@ -0,0 +1,3 @@
|
||||
class ApplicationRecord < ActiveRecord::Base
|
||||
self.abstract_class = true
|
||||
end
|
||||
@@ -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
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
class Translation < ActiveRecord::Base
|
||||
class Translation < ApplicationRecord
|
||||
belongs_to :problem, inverse_of: :translations
|
||||
|
||||
validates :title, :content, :problem_id, presence: true
|
||||
|
||||
Reference in New Issue
Block a user