Class: Admin::FacultySponsorsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- Admin::FacultySponsorsController
- Defined in:
- app/controllers/admin/faculty_sponsors_controller.rb
Instance Method Summary collapse
- #create ⇒ Object
- #destroy ⇒ Object
- #edit ⇒ Object
- #index ⇒ Object
- #new ⇒ Object
- #show ⇒ Object
- #update ⇒ Object
Instance Method Details
#create ⇒ Object
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 |
#destroy ⇒ Object
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 |
#edit ⇒ Object
20 21 |
# File 'app/controllers/admin/faculty_sponsors_controller.rb', line 20 def edit end |
#index ⇒ Object
9 10 11 |
# File 'app/controllers/admin/faculty_sponsors_controller.rb', line 9 def index @faculty_sponsors = FacultySponsor.all end |
#new ⇒ Object
16 17 18 |
# File 'app/controllers/admin/faculty_sponsors_controller.rb', line 16 def new @faculty_sponsor = FacultySponsor.new end |
#show ⇒ Object
13 14 |
# File 'app/controllers/admin/faculty_sponsors_controller.rb', line 13 def show end |
#update ⇒ Object
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 |