0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-07 13:19:19 +08:00
discourse/plugins/discourse-policy/config/routes.rb

8 lines
234 B
Ruby
Vendored

# frozen_string_literal: true
DiscoursePolicy::Engine.routes.draw do
put "/accept" => "policy#accept"
put "/unaccept" => "policy#unaccept"
get "/accepted" => "policy#accepted"
get "/not-accepted" => "policy#not_accepted"
end