mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-06-19 05:13:38 +08:00
11 lines
348 B
Ruby
Vendored
11 lines
348 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
Fabricator(:gamification_leaderboard, from: DiscourseGamification::GamificationLeaderboard) do
|
|
name { sequence(:name) { |i| "leaderboard#{i + 1}" } }
|
|
created_by_id { Fabricate(:user).id }
|
|
from_date { nil }
|
|
to_date { nil }
|
|
visible_to_groups_ids { [] }
|
|
included_groups_ids { [] }
|
|
default_period { 0 }
|
|
end
|