discourse/app/models/top_lists.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
199 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2014-02-06 05:39:43 -05:00
class TopLists
include ActiveModel::Serialization
attr_accessor :draft, :draft_key, :draft_sequence
TopTopic.periods.each { |period| attr_accessor period }
end