mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-06 16:50:46 +08:00
11 lines
348 B
Ruby
11 lines
348 B
Ruby
# 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
|