| 
									
										
										
										
											2019-03-16 09:37:35 +00:00
										 |  |  | # frozen_string_literal: true | 
					
						
							| 
									
										
										
										
											2019-03-15 01:32:57 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:29 +00:00
										 |  |  | # Redmine - project management software | 
					
						
							| 
									
										
										
										
											2021-03-25 06:58:56 +00:00
										 |  |  | # Copyright (C) 2006-2021  Jean-Philippe Lang | 
					
						
							| 
									
										
										
										
											2007-09-14 11:34:08 +00:00
										 |  |  | # | 
					
						
							|  |  |  | # This program is free software; you can redistribute it and/or | 
					
						
							|  |  |  | # modify it under the terms of the GNU General Public License | 
					
						
							|  |  |  | # as published by the Free Software Foundation; either version 2 | 
					
						
							|  |  |  | # of the License, or (at your option) any later version. | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:29 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-09-14 11:34:08 +00:00
										 |  |  | # This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  | # but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  | # GNU General Public License for more details. | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:29 +00:00
										 |  |  | # | 
					
						
							| 
									
										
										
										
											2007-09-14 11:34:08 +00:00
										 |  |  | # You should have received a copy of the GNU General Public License | 
					
						
							|  |  |  | # along with this program; if not, write to the Free Software | 
					
						
							|  |  |  | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | class WikisController < ApplicationController | 
					
						
							| 
									
										
										
										
											2021-07-26 21:28:36 +00:00
										 |  |  |   menu_item :wiki | 
					
						
							| 
									
										
										
										
											2016-07-14 07:27:31 +00:00
										 |  |  |   before_action :find_project, :authorize | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:29 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-09-14 11:34:08 +00:00
										 |  |  |   # Delete a project's wiki | 
					
						
							|  |  |  |   def destroy | 
					
						
							|  |  |  |     if request.post? && params[:confirm] && @project.wiki | 
					
						
							|  |  |  |       @project.wiki.destroy | 
					
						
							| 
									
										
										
										
											2021-07-26 21:27:23 +00:00
										 |  |  |       redirect_to project_path(@project) | 
					
						
							| 
									
										
										
										
											2011-08-31 08:45:29 +00:00
										 |  |  |     end | 
					
						
							| 
									
										
										
										
											2007-09-14 11:34:08 +00:00
										 |  |  |   end | 
					
						
							|  |  |  | end |