blob: 275b84e8b77b5dc56aab9733af4d60d478155aee (
plain) (
blame)
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
50
51
52
53
|
class ArticlesController < ApplicationController
http_basic_authenticate_with name: "dhh", password: "secret", except: [:index, :show]
def index
@articles = Article.all
end
def show
@article = Article.find(params[:id])
end
def edit
@article = Article.find(params[:id])
end
def update
@article = Article.find(params[:id])
if @article.update(article_params)
redirect_to action: :show, id: @article.id
else
render 'edit'
end
end
def new
@article = Article.new
end
def create
@article = Article.new(article_params)
if @article.save
redirect_to action: :show, id: @article.id
else
render 'new'
end
end
def destroy
@article = Article.find(params[:id])
@article.destroy
redirect_to action: :index
end
private
def article_params
params.require(:article).permit(:title, :text)
end
end
|