scaffoldsgesäubert

This commit is contained in:
Andreas Stephanides
2013-02-12 10:08:44 +01:00
parent d18c411a84
commit 232e6cefff
15 changed files with 88 additions and 178 deletions

View File

@@ -1,35 +1,18 @@
class StudienController < ApplicationController
# GET /studia
# GET /studia.json
def index
@studien = Studium.all
respond_to do |format|
format.html # index.html.erb
format.json { render json: @studien }
end
end
# GET /studia/1
# GET /studia/1.json
def show
@studium= Studium.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render json: @studium }
end
end
@studium= Studium.find(params[:id])
end
# GET /studia/new
# GET /studia/new.json
def new
@studium = Studium.new
respond_to do |format|
format.html # new.html.erb
format.json { render json: @studium }
end
end
# GET /studia/1/edit
@@ -53,18 +36,17 @@ class StudienController < ApplicationController
end
end
# PUT /studia/1
# PUT /studia/1.json
def update
@studium = Studium.find(params[:id])
respond_to do |format|
if @studium.update_attributes(params[:studium])
format.html { redirect_to @studium, notice: 'Studium was successfully updated.' }
format.json { head :no_content }
else
format.html { render action: "edit" }
format.json { render json: @studium.errors, status: :unprocessable_entity }
end
end
end
@@ -74,10 +56,6 @@ class StudienController < ApplicationController
def destroy
@studium = Studium.find(params[:id])
@studium.destroy
respond_to do |format|
format.html { redirect_to studien_url }
format.json { head :no_content }
end
redirect_to studien_url
end
end