Class: Admin::BaitLibrariesController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/admin/bait_libraries_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



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

#destroyObject



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

#editObject



20
21
# File 'app/controllers/admin/bait_libraries_controller.rb', line 20

def edit
end

#indexObject



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

#newObject



16
17
18
# File 'app/controllers/admin/bait_libraries_controller.rb', line 16

def new
  @bait_library = BaitLibrary.new
end

#updateObject



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