DEV: Change slugs/generate endpoint from GET to POST (#19984)

Followup on feedback on PR #19928
https://github.com/discourse/discourse/pull/19928#discussion_r1083687839,
it makes more sense to have this endpoint as a POST rather than
a GET.
This commit is contained in:
Martin Brennan
2023-01-27 10:58:33 +10:00
committed by GitHub
parent 0c967e6aa3
commit c8f8d9dbb6
3 changed files with 11 additions and 13 deletions

View File

@@ -1064,7 +1064,7 @@ Discourse::Application.routes.draw do
resources :associated_groups, only: %i[index], constraints: AdminConstraint.new
get "slugs/generate", to: "slugs#generate"
post "slugs", to: "slugs#generate"
# aliases so old API code works
delete "admin/groups/:id/members" => "groups#remove_member", :constraints => AdminConstraint.new