mirror of
https://github.com/discourse/discourse.git
synced 2026-08-07 13:19:19 +08:00
8 lines
234 B
Ruby
Vendored
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
|