diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-02 13:03:43 -0400 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-07-02 13:03:43 -0400 |
commit | e47e83cf6bded3d1924b4d500193e7876833ef83 (patch) | |
tree | 058f011637e67455dcd8451fbfa784b5883c6f69 /app/controllers/entries_controller.rb | |
parent | 528ccde8915cd1ed7a39e137dd4d98869797956a (diff) | |
download | thoughts-e47e83cf6bded3d1924b4d500193e7876833ef83.tar.gz thoughts-e47e83cf6bded3d1924b4d500193e7876833ef83.tar.bz2 thoughts-e47e83cf6bded3d1924b4d500193e7876833ef83.zip |
Created admin panel
Currently allows you to create and edit blogs, including associated records. Uses a WYSIWYG editor that allows uploading images. Also included jQuery :(
Diffstat (limited to 'app/controllers/entries_controller.rb')
-rw-r--r-- | app/controllers/entries_controller.rb | 21 |
1 files changed, 1 insertions, 20 deletions
diff --git a/app/controllers/entries_controller.rb b/app/controllers/entries_controller.rb index 366de53..14d779a 100644 --- a/app/controllers/entries_controller.rb +++ b/app/controllers/entries_controller.rb | |||
@@ -1,26 +1,7 @@ | |||
1 | class EntriesController < ApplicationController | 1 | class EntriesController < ApplicationController |
2 | before_action :authenticate_user!, only: [:edit, :update] | ||
3 | 2 | ||
4 | def show | 3 | def show |
5 | @entry = Entry.where(slug: params[:slug]).first | 4 | @entry = Entry.find_by_slug(params[:slug]) |
6 | end | 5 | end |
7 | 6 | ||
8 | def edit | ||
9 | @entry = Entry.where(slug: params[:slug]).first | ||
10 | end | ||
11 | |||
12 | def update | ||
13 | @entry = Entry.where(slug: params[:slug]).first | ||
14 | |||
15 | if @entry.update_attributes(entry_params) | ||
16 | flash.notice = "" | ||
17 | end | ||
18 | end | ||
19 | |||
20 | private | ||
21 | |||
22 | def entry_params | ||
23 | params.require(:blog).permit(:title, :body, :slug) | ||
24 | end | ||
25 | |||
26 | end | 7 | end |