Class: ActiveStix::ReportsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- ActiveStix::ReportsController
- Defined in:
- app/controllers/active_stix/reports_controller.rb
Instance Method Summary collapse
-
#create ⇒ Object
POST /reports.
-
#destroy ⇒ Object
DELETE /reports/1.
-
#edit ⇒ Object
GET /reports/1/edit.
-
#index ⇒ Object
GET /reports.
-
#new ⇒ Object
GET /reports/new.
-
#show ⇒ Object
GET /reports/1.
-
#update ⇒ Object
PATCH/PUT /reports/1.
Instance Method Details
#create ⇒ Object
POST /reports
26 27 28 29 30 31 32 33 34 |
# File 'app/controllers/active_stix/reports_controller.rb', line 26 def create @report = Report.new(report_params) if @report.save redirect_to @report, notice: 'Report was successfully created.' else render :new end end |
#destroy ⇒ Object
DELETE /reports/1
46 47 48 49 |
# File 'app/controllers/active_stix/reports_controller.rb', line 46 def destroy @report.destroy redirect_to reports_url, notice: 'Report was successfully destroyed.' end |
#edit ⇒ Object
GET /reports/1/edit
22 23 |
# File 'app/controllers/active_stix/reports_controller.rb', line 22 def edit end |
#index ⇒ Object
GET /reports
8 9 10 |
# File 'app/controllers/active_stix/reports_controller.rb', line 8 def index @reports = Report.all end |
#new ⇒ Object
GET /reports/new
17 18 19 |
# File 'app/controllers/active_stix/reports_controller.rb', line 17 def new @report = Report.new end |
#show ⇒ Object
GET /reports/1
13 14 |
# File 'app/controllers/active_stix/reports_controller.rb', line 13 def show end |
#update ⇒ Object
PATCH/PUT /reports/1
37 38 39 40 41 42 43 |
# File 'app/controllers/active_stix/reports_controller.rb', line 37 def update if @report.update(report_params) redirect_to @report, notice: 'Report was successfully updated.' else render :edit end end |