mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-07 08:54:19 +08:00
7 lines
170 B
Ruby
7 lines
170 B
Ruby
# frozen_string_literal: true
|
|
|
|
DiscourseTopicVoting::Engine.routes.draw do
|
|
post "vote" => "votes#vote"
|
|
post "unvote" => "votes#unvote"
|
|
get "who" => "votes#who"
|
|
end
|