Fix bug where an rejected announcement could still be edited by url
This commit is contained in:
		
							parent
							
								
									6130f8b1e4
								
							
						
					
					
						commit
						db1b84e962
					
				| 
						 | 
				
			
			@ -89,6 +89,9 @@ class Panel::Announcement::BackEnd::BulletinsController < OrbitBackendController
 | 
			
		|||
  # GET /bulletins/1/edit
 | 
			
		||||
  def edit
 | 
			
		||||
    @bulletin = Bulletin.find(params[:id])
 | 
			
		||||
    if @bulletin.is_rejected?
 | 
			
		||||
      redirect_to :action => :index
 | 
			
		||||
    else
 | 
			
		||||
      # @summary_variable = @bulletin.summary_variable
 | 
			
		||||
  	
 | 
			
		||||
    	@link_url = panel_announcement_back_end_bulletin_path(@bulletin)
 | 
			
		||||
| 
						 | 
				
			
			@ -96,6 +99,7 @@ class Panel::Announcement::BackEnd::BulletinsController < OrbitBackendController
 | 
			
		|||
    	get_categorys
 | 
			
		||||
    	get_tags
 | 
			
		||||
    end
 | 
			
		||||
  end
 | 
			
		||||
 | 
			
		||||
  # POST /bulletins
 | 
			
		||||
  # POST /bulletins.xml
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Reference in New Issue