class AnnouncementsController < ApplicationController before_filter :get_location # GET /announcements # GET /announcements.xml def index @announcements = @location.announcements 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 @announcement = @location.announcements.new(params[:announcement]) respond_to do |format| if @announcement.save flash[:notice] = 'Announcement was successfully created.' format.html { redirect_to location_announcements_path(@location.id) } 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| if @announcement.update_attributes(params[:announcement]) flash[:notice] = 'Announcement was successfully updated.' format.html { redirect_to location_announcements_path(@location.id) } format.xml { head :ok } else format.html { render :action => "edit" } format.xml { render :xml => @announcement.errors, :status => :unprocessable_entity } end end end # DELETE /announcements/1 # DELETE /announcements/1.xml def destroy @announcement = Announcement.find(params[:id]) @announcement.destroy respond_to do |format| format.html { redirect_to location_announcements_path(@location.id) } format.xml { head :ok } end end private def get_location @location = Location.find(params[:location_id]) rescue nil end end