mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-04 05:09:20 +08:00
7 lines
198 B
Ruby
7 lines
198 B
Ruby
# frozen_string_literal: true
|
|
|
|
DiscourseRssPolling::Engine.routes.draw do
|
|
root "feed_settings#show"
|
|
|
|
resource :feed_settings, constraints: StaffConstraint.new, only: %i[show update destroy]
|
|
end
|