Fix bug where an rejected announcement could still be edited by url

This commit is contained in:
Christophe Vilayphiou 2012-04-24 00:58:56 +08:00
parent 6130f8b1e4
commit db1b84e962
1 changed files with 10 additions and 6 deletions

View File

@ -89,12 +89,16 @@ class Panel::Announcement::BackEnd::BulletinsController < OrbitBackendController
# GET /bulletins/1/edit
def edit
@bulletin = Bulletin.find(params[:id])
# @summary_variable = @bulletin.summary_variable
@link_url = panel_announcement_back_end_bulletin_path(@bulletin)
get_categorys
get_tags
if @bulletin.is_rejected?
redirect_to :action => :index
else
# @summary_variable = @bulletin.summary_variable
@link_url = panel_announcement_back_end_bulletin_path(@bulletin)
get_categorys
get_tags
end
end
# POST /bulletins