Skip to content
Snippets Groups Projects
Commit cd3eabd7 authored by Vinnie Okada's avatar Vinnie Okada
Browse files

Use GET instead of POST for Markdown previews

parent 5700842b
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -48,7 +48,7 @@ $(document).ready ->
preview.text "Nothing to preview."
else
preview.text "Loading..."
$.post($(this).data("url"),
$.get($(this).data("url"),
md_text: mdText
).success (previewData) ->
preview.html previewData
Loading
Loading
Loading
Loading
@@ -186,7 +186,7 @@ Gitlab::Application.routes.draw do
post :unarchive
post :upload_image
post :toggle_star
post :markdown_preview
get :markdown_preview
get :autocomplete_sources
get :import
put :retry_import
Loading
Loading
Loading
Loading
@@ -61,7 +61,7 @@ end
# project GET /:id(.:format) projects#show
# PUT /:id(.:format) projects#update
# DELETE /:id(.:format) projects#destroy
# markdown_preview_project POST /:id/markdown_preview(.:format) projects#markdown_preview
# markdown_preview_project GET /:id/markdown_preview(.:format) projects#markdown_preview
describe ProjectsController, "routing" do
it "to #create" do
post("/projects").should route_to('projects#create')
Loading
Loading
@@ -96,7 +96,7 @@ describe ProjectsController, "routing" do
end
 
it 'to #markdown_preview' do
post('/gitlab/gitlabhq/markdown_preview').should(
get('/gitlab/gitlabhq/markdown_preview').should(
route_to('projects#markdown_preview', id: 'gitlab/gitlabhq')
)
end
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment