aboutsummaryrefslogtreecommitdiffstats
path: root/guides/code/getting_started/app/controllers/articles_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'guides/code/getting_started/app/controllers/articles_controller.rb')
-rw-r--r--guides/code/getting_started/app/controllers/articles_controller.rb53
1 files changed, 0 insertions, 53 deletions
diff --git a/guides/code/getting_started/app/controllers/articles_controller.rb b/guides/code/getting_started/app/controllers/articles_controller.rb
deleted file mode 100644
index 275b84e8b7..0000000000
--- a/guides/code/getting_started/app/controllers/articles_controller.rb
+++ /dev/null
@@ -1,53 +0,0 @@
-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