Class: KktShoppe::CountriesController
- Inherits:
-
ApplicationController
- Object
- ActionController::Base
- ApplicationController
- KktShoppe::CountriesController
- Defined in:
- app/controllers/kkt_shoppe/countries_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
15 16 17 18 19 20 21 22 |
# File 'app/controllers/kkt_shoppe/countries_controller.rb', line 15 def create @country = KktShoppe::Country.new(safe_params) if @country.save redirect_to :countries, :flash => {:notice => t('kkt_shoppe.countries.create_notice')} else render :action => "new" end end |
#destroy ⇒ Object
35 36 37 38 |
# File 'app/controllers/kkt_shoppe/countries_controller.rb', line 35 def destroy @country.destroy redirect_to :countries, :flash => {:notice => t('kkt_shoppe.countries.destroy_notice')} end |
#edit ⇒ Object
24 25 |
# File 'app/controllers/kkt_shoppe/countries_controller.rb', line 24 def edit end |
#index ⇒ Object
7 8 9 |
# File 'app/controllers/kkt_shoppe/countries_controller.rb', line 7 def index @countries = KktShoppe::Country.ordered end |
#new ⇒ Object
11 12 13 |
# File 'app/controllers/kkt_shoppe/countries_controller.rb', line 11 def new @country = KktShoppe::Country.new end |
#update ⇒ Object
27 28 29 30 31 32 33 |
# File 'app/controllers/kkt_shoppe/countries_controller.rb', line 27 def update if @country.update(safe_params) redirect_to [:edit, @country], :flash => {:notice => t('kkt_shoppe.countries.update_notice') } else render :action => "edit" end end |