mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 17:02:55 +08:00
9 lines
181 B
Ruby
Vendored
9 lines
181 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class UserTimezoneSerializer < BasicUserSerializer
|
|
attributes :timezone, :on_holiday
|
|
|
|
def on_holiday
|
|
@options[:on_holiday] || false
|
|
end
|
|
end
|