Fix bug where an rejected announcement could still be edited by url
This commit is contained in:
parent
6130f8b1e4
commit
db1b84e962
|
@ -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
|
||||
|
|
Reference in New Issue