mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-25 23:21:58 +08:00
15 lines
402 B
Ruby
Vendored
15 lines
402 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
class LeaderboardSerializer < ApplicationSerializer
|
|
attributes :id,
|
|
:name,
|
|
:created_by_id,
|
|
:from_date,
|
|
:to_date,
|
|
:visible_to_groups_ids,
|
|
:included_groups_ids,
|
|
:excluded_groups_ids,
|
|
:default_period,
|
|
:updated_at,
|
|
:period_filter_disabled
|
|
end
|