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

Make translations a nested resource for each problem

This commit is contained in:
2014-12-30 17:12:50 +01:00
parent 37f4eefff2
commit b16a04973a
7 changed files with 18 additions and 14 deletions

View File

@@ -1,7 +1,7 @@
class Translation < ActiveRecord::Base
belongs_to :problem, inverse_of: :translations
validates :title, :content, :problem, presence: true
validates :title, :content, :problem_id, presence: true
validates :title, uniqueness: true
self.per_page = 50