Class: Admin::FacultySponsorsController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/admin/faculty_sponsors_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/faculty_sponsors_controller.rb', line 23

def create
  @faculty_sponsor = FacultySponsor.new(params[:faculty_sponsor])

  respond_to do |format|
    if @faculty_sponsor.save
      flash[:notice] = 'Faculty Sponsor was successfully created.'
      format.html { redirect_to(admin_faculty_sponsors_path) }
    else
      format.html { render action: 'new' }
    end
  end
end

#destroyObject



47
48
49
50
51
52
53
54
# File 'app/controllers/admin/faculty_sponsors_controller.rb', line 47

def destroy
  @faculty_sponsor.destroy

  respond_to do |format|
    flash[:notice] = 'Faculty Sponsor was successfully deleted.'
    format.html { redirect_to(admin_faculty_sponsors_path) }
  end
end

#editObject



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

def edit
end

#indexObject



9
10
11
# File 'app/controllers/admin/faculty_sponsors_controller.rb', line 9

def index
  @faculty_sponsors = FacultySponsor.all
end

#newObject



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

def new
  @faculty_sponsor = FacultySponsor.new
end

#showObject



13
14
# File 'app/controllers/admin/faculty_sponsors_controller.rb', line 13

def show
end

#updateObject



36
37
38
39
40
41
42
43
44
45
# File 'app/controllers/admin/faculty_sponsors_controller.rb', line 36

def update
  respond_to do |format|
    if @faculty_sponsor.update(params[:faculty_sponsor])
      flash[:notice] = 'Faculty Sponsor was successfully updated.'
      format.html { redirect_to(admin_faculty_sponsors_path) }
    else
      format.html { render action: 'edit' }
    end
  end
end