mirror of
https://github.com/discourse/discourse.git
synced 2026-08-06 04:02:30 +08:00
8 lines
263 B
Ruby
Vendored
8 lines
263 B
Ruby
Vendored
# 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
|