Class: Admin::BaitLibrariesController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Admin::BaitLibrariesController
- Defined in:
- app/controllers/admin/bait_libraries_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'app/controllers/admin/bait_libraries_controller.rb', line 23 def create @bait_library = BaitLibrary.new(params[:bait_library]) respond_to do |format| if @bait_library.save flash[:notice] = 'Bait Library was successfully created.' format.html { redirect_to(admin_bait_libraries_path) } else format.html { render action: 'new' } end end end |
#destroy ⇒ Object
47 48 49 50 51 52 |
# File 'app/controllers/admin/bait_libraries_controller.rb', line 47 def destroy respond_to do |format| flash[:notice] = 'Bait Library was successfully deleted.' if @bait_library.hide format.html { redirect_to(admin_bait_libraries_path) } end end |
#edit ⇒ Object
20 21 |
# File 'app/controllers/admin/bait_libraries_controller.rb', line 20 def edit end |
#index ⇒ Object
10 11 12 13 14 |
# File 'app/controllers/admin/bait_libraries_controller.rb', line 10 def index @bait_libraries = BaitLibrary.visible @bait_library_types = BaitLibraryType.visible @bait_library_suppliers = BaitLibrary::Supplier.visible end |
#new ⇒ Object
16 17 18 |
# File 'app/controllers/admin/bait_libraries_controller.rb', line 16 def new @bait_library = BaitLibrary.new end |
#update ⇒ Object
36 37 38 39 40 41 42 43 44 45 |
# File 'app/controllers/admin/bait_libraries_controller.rb', line 36 def update respond_to do |format| if @bait_library.update(params[:bait_library]) flash[:notice] = 'Bait Library was successfully updated.' format.html { redirect_to(admin_bait_libraries_path) } else format.html { render action: 'edit' } end end end |