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