Class: Iro::AlertsController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- Iro::AlertsController
- Defined in:
- app/controllers/iro/alerts_controller.rb
Instance Method Summary collapse
- #create ⇒ Object
- #destroy ⇒ Object
- #edit ⇒ Object
- #index ⇒ Object
- #new ⇒ Object
- #show ⇒ Object
- #update ⇒ Object
Methods inherited from ApplicationController
Instance Method Details
#create ⇒ Object
21 22 23 24 25 26 27 28 29 |
# File 'app/controllers/iro/alerts_controller.rb', line 21 def create @alert = Iro::Alert.new(alert_params) if @alert.save redirect_to @alert, notice: 'Alert was successfully created.' else render :new end end |
#destroy ⇒ Object
39 40 41 42 |
# File 'app/controllers/iro/alerts_controller.rb', line 39 def destroy @alert.destroy redirect_to alerts_url, notice: 'Alert was successfully destroyed.' end |
#edit ⇒ Object
18 19 |
# File 'app/controllers/iro/alerts_controller.rb', line 18 def edit end |
#index ⇒ Object
7 8 9 |
# File 'app/controllers/iro/alerts_controller.rb', line 7 def index @alerts = Iro::Alert.all end |
#new ⇒ Object
14 15 16 |
# File 'app/controllers/iro/alerts_controller.rb', line 14 def new @alert = Iro::Alert.new end |
#show ⇒ Object
11 12 |
# File 'app/controllers/iro/alerts_controller.rb', line 11 def show end |
#update ⇒ Object
31 32 33 34 35 36 37 |
# File 'app/controllers/iro/alerts_controller.rb', line 31 def update if @alert.update(alert_params) redirect_to @alert, notice: 'Alert was successfully updated.' else render :edit end end |