mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-04-30 23:05:35 +08:00
8 lines
263 B
Ruby
8 lines
263 B
Ruby
# frozen_string_literal: true
|
|
|
|
DiscourseCakeday::Engine.routes.draw do
|
|
get "birthdays" => "birthdays#index"
|
|
get "birthdays/:filter" => "birthdays#index"
|
|
get "anniversaries" => "anniversaries#index"
|
|
get "anniversaries/:filter" => "anniversaries#index"
|
|
end
|