blob: 9129dee5dc7227362bc5a9187c83893aefe21f7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
class WinesController < ApplicationController
def index
@wines = Wine.all
end
def show
@wine = Wine.find(params[:id])
end
def new
@wine = Wine.new
end
def create
@wine = Wine.new(wine_params)
if @wine.save
redirect_to @wine
else
render :new, status: :unprocessable_entity
end
end
def edit
@wine = Wine.find(params[:id])
end
def update
@wine = Wine.find(params[:id])
if @wine.update(wine_params)
redirect_to @wine
else
render :edit, status: :unprocessable_entity
end
end
def destroy
@wine = Wine.find(params[:id])
@wine.destroy
redirect_to root_path, status: :see_other
end
private
def wine_params
params.require(:wine).permit(:name, :year, :variety, :notes)
end
end
|