1
0
mirror of https://github.com/projekteuler/projekteuler.git synced 2026-01-26 18:18:51 +01:00

Add ability to accept or decline translations

This commit is contained in:
2019-02-02 17:53:02 +01:00
parent 0dd3092c4c
commit 3a2aa6ea1a
11 changed files with 87 additions and 11 deletions

View File

@@ -0,0 +1,15 @@
class AddStatusToTranslations < ActiveRecord::Migration[5.2]
def change
add_column :translations, :status, :integer, default: 0
reversible do |dir|
dir.up do
Problem.all.each do |problem|
if problem.is_translated?
problem.translation.in_use!
end
end
end
end
end
end