discourse-topic-voting/config/routes.rb

8 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