mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 16:46:42 +01:00
52 lines
1.4 KiB
Ruby
52 lines
1.4 KiB
Ruby
class TranslationsController < ApplicationController
|
|
before_action :set_translation, only: :show
|
|
before_action :set_problem, only: [:new, :create]
|
|
|
|
# GET /translations
|
|
# GET /translations.json
|
|
def index
|
|
@translations = Translation.paginate(page: params[:page])
|
|
end
|
|
|
|
# GET /translations/1
|
|
# GET /translations/1.json
|
|
def show
|
|
end
|
|
|
|
# GET /translations/new
|
|
def new
|
|
@translation = @problem.translations.build
|
|
end
|
|
|
|
# POST /translations
|
|
# POST /translations.json
|
|
def create
|
|
@translation = @problem.translations.new(translation_params)
|
|
|
|
respond_to do |format|
|
|
if @translation.save
|
|
format.html { redirect_to @translation, notice: 'Translation was successfully created.' }
|
|
format.json { render :show, status: :created, location: @translation }
|
|
else
|
|
format.html { render :new }
|
|
format.json { render json: @translation.errors, status: :unprocessable_entity }
|
|
end
|
|
end
|
|
end
|
|
|
|
private
|
|
# Use callbacks to share common setup or constraints between actions.
|
|
def set_translation
|
|
@translation = Translation.find(params[:id])
|
|
end
|
|
|
|
# Never trust parameters from the scary internet, only allow the white list through.
|
|
def translation_params
|
|
params.require(:translation).permit(:title, :content)
|
|
end
|
|
|
|
def set_problem
|
|
@problem = Problem.find(params[:problem_id])
|
|
end
|
|
end
|