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

Remove edit, update, destroy actions for translations

This commit is contained in:
2014-12-30 11:32:06 +01:00
parent 2b812f297d
commit 3cfb19a009
4 changed files with 2 additions and 49 deletions

View File

@@ -1,5 +1,5 @@
class TranslationsController < ApplicationController
before_action :set_translation, only: [:show, :edit, :update, :destroy]
before_action :set_translation, only: :show
# GET /translations
# GET /translations.json
@@ -17,10 +17,6 @@ class TranslationsController < ApplicationController
@translation = Translation.new
end
# GET /translations/1/edit
def edit
end
# POST /translations
# POST /translations.json
def create
@@ -37,30 +33,6 @@ class TranslationsController < ApplicationController
end
end
# PATCH/PUT /translations/1
# PATCH/PUT /translations/1.json
def update
respond_to do |format|
if @translation.update(translation_params)
format.html { redirect_to @translation, notice: 'Translation was successfully updated.' }
format.json { render :show, status: :ok, location: @translation }
else
format.html { render :edit }
format.json { render json: @translation.errors, status: :unprocessable_entity }
end
end
end
# DELETE /translations/1
# DELETE /translations/1.json
def destroy
@translation.destroy
respond_to do |format|
format.html { redirect_to translations_url, notice: 'Translation was successfully destroyed.' }
format.json { head :no_content }
end
end
private
# Use callbacks to share common setup or constraints between actions.
def set_translation

View File

@@ -14,4 +14,3 @@
<div class="text-center">
<%= link_to 'Dieses Problem auf projecteuler.net', @translation.problem.original_url, target: '_blank' %>
</div>
<%= link_to 'Edit', edit_translation_path(@translation), class: 'btn btn-default' %>