mirror of
https://github.com/discourse/discourse.git
synced 2026-08-08 15:55:38 +08:00
11 lines
176 B
Ruby
Vendored
11 lines
176 B
Ruby
Vendored
# frozen_string_literal: true
|
|
|
|
module DiscourseGamification
|
|
class DeletedGamificationLeaderboard
|
|
attr_reader :id
|
|
|
|
def initialize(id)
|
|
@id = id
|
|
end
|
|
end
|
|
end
|