mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 08:46:41 +01:00
47 lines
1.2 KiB
Ruby
47 lines
1.2 KiB
Ruby
class TranslationsController < ApplicationController
|
|
before_action :set_translation, only: :show
|
|
|
|
# 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 = Translation.new
|
|
end
|
|
|
|
# POST /translations
|
|
# POST /translations.json
|
|
def create
|
|
@translation = Translation.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, :problem_id)
|
|
end
|
|
end
|