diff options
author | Vinnie Okada <vokada@mrvinn.com> | 2014-10-15 02:21:21 -0500 |
---|---|---|
committer | Vinnie Okada <vokada@mrvinn.com> | 2014-10-15 23:52:33 -0500 |
commit | 5700842ba8ca2f3100395a9fb98c759e78e63d96 (patch) | |
tree | 5014cffa098acd7f864159cdf2db1edcf1b21dd6 /config/routes.rb | |
parent | a0a826ebdcb783c660dd40d8cb217db28a9d4998 (diff) | |
download | gitlab-ce-5700842ba8ca2f3100395a9fb98c759e78e63d96.tar.gz |
Add Markdown preview to more forms
Enable Markdown previews when creating and editing issues, merge
requests, and milestones, and when editing notes.
Diffstat (limited to 'config/routes.rb')
-rw-r--r-- | config/routes.rb | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/config/routes.rb b/config/routes.rb index 2534153758b..5dbb238ba6b 100644 --- a/config/routes.rb +++ b/config/routes.rb @@ -186,6 +186,7 @@ Gitlab::Application.routes.draw do post :unarchive post :upload_image post :toggle_star + post :markdown_preview get :autocomplete_sources get :import put :retry_import @@ -328,10 +329,6 @@ Gitlab::Application.routes.draw do member do delete :delete_attachment end - - collection do - post :preview - end end end end |