Show More
Commit Description:
add model solution
Commit Description:
add model solution
References:
File last commit:
Show/Diff file:
Action:
app/controllers/announcements_controller.rb | 116 lines | 3.2 KiB | text/x-ruby | RubyLexer |
jittat
[web] added announcement...
r97 class AnnouncementsController < ApplicationController
change depricated before_filter to before_action
r745 before_action :admin_authorization
jittat
[web] added announcement...
r97
in_place_edit_for :announcement, :published
# GET /announcements
# GET /announcements.xml
def index
change find(:xxx) to correct syntax for rails 4
r619 @announcements = Announcement.order(created_at: :desc)
jittat
[web] added announcement...
r97
respond_to do |format|
format.html # index.html.erb
format.xml { render :xml => @announcements }
end
end
# GET /announcements/1
# GET /announcements/1.xml
def show
@announcement = Announcement.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.xml { render :xml => @announcement }
end
end
# GET /announcements/new
# GET /announcements/new.xml
def new
@announcement = Announcement.new
respond_to do |format|
format.html # new.html.erb
format.xml { render :xml => @announcement }
end
end
# GET /announcements/1/edit
def edit
@announcement = Announcement.find(params[:id])
end
# POST /announcements
# POST /announcements.xml
def create
NEED TESTING...
r637 @announcement = Announcement.new(announcement_params)
jittat
[web] added announcement...
r97
respond_to do |format|
if @announcement.save
flash[:notice] = 'Announcement was successfully created.'
format.html { redirect_to(@announcement) }
format.xml { render :xml => @announcement, :status => :created, :location => @announcement }
else
format.html { render :action => "new" }
format.xml { render :xml => @announcement.errors, :status => :unprocessable_entity }
end
end
end
# PUT /announcements/1
# PUT /announcements/1.xml
def update
@announcement = Announcement.find(params[:id])
respond_to do |format|
switch to strong parameter for mass update (have not finished the problem controller yet)
r617 if @announcement.update_attributes(announcement_params)
jittat
[web] added announcement...
r97 flash[:notice] = 'Announcement was successfully updated.'
format.html { redirect_to(@announcement) }
wip: bootstrap toggle switch...
r556 format.js {}
jittat
[web] added announcement...
r97 format.xml { head :ok }
else
format.html { render :action => "edit" }
wip: bootstrap toggle switch...
r556 format.js {}
jittat
[web] added announcement...
r97 format.xml { render :xml => @announcement.errors, :status => :unprocessable_entity }
end
end
end
wip: bootstrap toggle switch...
r556 def toggle
@announcement = Announcement.find(params[:id])
change announcement toggle into bootstrap button with processing state
r557 @announcement.update_attributes( published: !@announcement.published? )
wip: bootstrap toggle switch...
r556 respond_to do |format|
* DRY the toggle button via application_helper.rb#toggle_button and _toggle_button.js.haml...
r562 format.js { render partial: 'toggle_button',
locals: {button_id: "#announcement_toggle_#{@announcement.id}",button_on: @announcement.published? } }
wip: bootstrap toggle switch...
r556 end
end
- add front page toggle to announcement...
r567 def toggle_front
@announcement = Announcement.find(params[:id])
@announcement.update_attributes( frontpage: !@announcement.frontpage? )
respond_to do |format|
format.js { render partial: 'toggle_button',
locals: {button_id: "#announcement_toggle_front_#{@announcement.id}",button_on: @announcement.frontpage? } }
end
end
jittat
[web] added announcement...
r97 # DELETE /announcements/1
# DELETE /announcements/1.xml
def destroy
@announcement = Announcement.find(params[:id])
@announcement.destroy
respond_to do |format|
format.html { redirect_to(announcements_url) }
format.xml { head :ok }
end
end
switch to strong parameter for mass update (have not finished the problem controller yet)
r617
private
def announcement_params
announcement on top menu bar
r804 params.require(:announcement).permit(:author, :body, :published, :frontpage, :contest_only, :title, :on_nav_bar)
switch to strong parameter for mass update (have not finished the problem controller yet)
r617 end
jittat
[web] added announcement...
r97 end