about summary refs log tree commit diff stats
path: root/app/controllers/admin/blogs_controller.rb
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-07-02 13:03:43 -0400
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-07-02 13:03:43 -0400
commite47e83cf6bded3d1924b4d500193e7876833ef83 (patch)
tree058f011637e67455dcd8451fbfa784b5883c6f69 /app/controllers/admin/blogs_controller.rb
parent528ccde8915cd1ed7a39e137dd4d98869797956a (diff)
downloadthoughts-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/admin/blogs_controller.rb')
-rw-r--r--app/controllers/admin/blogs_controller.rb52
1 files changed, 52 insertions, 0 deletions
diff --git a/app/controllers/admin/blogs_controller.rb b/app/controllers/admin/blogs_controller.rb new file mode 100644 index 0000000..fa46ab8 --- /dev/null +++ b/app/controllers/admin/blogs_controller.rb
@@ -0,0 +1,52 @@
1class Admin::BlogsController < Admin::AdminController
2 before_action :set_section
3
4 def index
5 @blogs = Blog.order(created_at: :desc)
6 end
7
8 def new
9 @blog = Blog.new
10 end
11
12 def create
13 @blog = Blog.new(blog_params)
14
15 if @blog.save
16 flash.notice = "Blog created successfully!"
17
18 render :edit
19 else
20 flash.alert = "Error creating blog."
21
22 render :new
23 end
24 end
25
26 def edit
27 @blog = Blog.find(params[:id])
28 end
29
30 def update
31 @blog = Blog.find(params[:id])
32
33 if @blog.update_attributes(blog_params)
34 flash.notice = "Blog updated successfully!"
35 else
36 flash.alert = "Error updating blog."
37 end
38
39 render :edit
40 end
41
42 private
43
44 def blog_params
45 params.require(:blog).permit(:title, :body, :slug, records_attributes: [:description, :_destroy])
46 end
47
48 def set_section
49 @section = "blogs"
50 end
51
52end