about summary refs log tree commit diff stats
path: root/app/controllers/admin/streams_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/admin/streams_controller.rb')
-rw-r--r--app/controllers/admin/streams_controller.rb52
1 files changed, 52 insertions, 0 deletions
diff --git a/app/controllers/admin/streams_controller.rb b/app/controllers/admin/streams_controller.rb new file mode 100644 index 0000000..86dec06 --- /dev/null +++ b/app/controllers/admin/streams_controller.rb
@@ -0,0 +1,52 @@
1class Admin::StreamsController < Admin::AdminController
2 before_action :set_section
3
4 def index
5 @streams = Stream.order(created_at: :desc)
6 end
7
8 def new
9 @stream = Stream.new
10 end
11
12 def create
13 @stream = Stream.new(stream_params)
14
15 if @stream.save
16 flash.notice = "Stream created successfully!"
17
18 render :edit
19 else
20 flash.alert = "Error creating stream."
21
22 render :new
23 end
24 end
25
26 def edit
27 @stream = Stream.find(params[:id])
28 end
29
30 def update
31 @stream = Stream.find(params[:id])
32
33 if @stream.update_attributes(stream_params)
34 flash.notice = "Stream updated successfully!"
35 else
36 flash.alert = "Error updating stream."
37 end
38
39 render :edit
40 end
41
42 private
43
44 def stream_params
45 params.require(:stream).permit(:title, :body, :slug, records_attributes: [:description, :_destroy])
46 end
47
48 def set_section
49 @section = "streams"
50 end
51
52end