mirror of
https://github.com/projekteuler/projekteuler.git
synced 2026-01-27 02:28:50 +01:00
Add presence of problem to translation
This commit is contained in:
@@ -69,6 +69,6 @@ class TranslationsController < ApplicationController
|
||||
|
||||
# Never trust parameters from the scary internet, only allow the white list through.
|
||||
def translation_params
|
||||
params.require(:translation).permit(:title, :content)
|
||||
params.require(:translation).permit(:title, :content, :problem_id)
|
||||
end
|
||||
end
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
class Translation < ActiveRecord::Base
|
||||
belongs_to :problem, inverse_of: :translations
|
||||
|
||||
validates :title, :content, presence: true
|
||||
validates :title, :content, :problem, presence: true
|
||||
validates :title, uniqueness: true
|
||||
|
||||
self.per_page = 50
|
||||
|
||||
Reference in New Issue
Block a user