mirror of
https://github.com/discourse/discourse.git
synced 2026-08-09 21:45:25 +08:00
15 lines
215 B
Ruby
Vendored
15 lines
215 B
Ruby
Vendored
module Holidays
|
|
module TEST_REGION
|
|
def self.defined_regions
|
|
[:test_region, :test_region2]
|
|
end
|
|
|
|
def self.holidays_by_month
|
|
{}
|
|
end
|
|
|
|
def self.custom_methods
|
|
{}
|
|
end
|
|
end
|
|
end
|