diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2017-11-05 19:09:05 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2017-11-05 19:09:05 +0000 |
commit | e438523e785b8f1c772b4a6a594fc1c3cacd5e76 (patch) | |
tree | 4bd54a527d11c9b5f28c707544b28569a8b46a5e /config/routes.rb | |
parent | 4c51d637616af48169d55970138f98e9db3a707d (diff) | |
download | redmine-e438523e785b8f1c772b4a6a594fc1c3cacd5e76.tar.gz redmine-e438523e785b8f1c772b4a6a594fc1c3cacd5e76.zip |
remove unused WikisController#edit (#26579)
git-svn-id: http://svn.redmine.org/redmine/trunk@17018 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/config/routes.rb b/config/routes.rb index bbe824761..e5b25f904 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -30,7 +30,6 @@ Rails.application.routes.draw do match '/issues/preview/edit/:id', :to => 'previews#issue', :as => 'preview_edit_issue', :via => [:get, :post, :put, :patch] match '/issues/preview', :to => 'previews#issue', :as => 'preview_issue', :via => [:get, :post, :put, :patch] - match 'projects/:id/wiki', :to => 'wikis#edit', :via => :post match 'projects/:id/wiki/destroy', :to => 'wikis#destroy', :via => [:get, :post] match 'boards/:board_id/topics/new', :to => 'messages#new', :via => [:get, :post], :as => 'new_board_message' |