Gab-Social/app/models/list_feed.rb
2019-07-02 03:10:25 -04:00

9 lines
130 B
Ruby

# frozen_string_literal: true
class ListFeed < Feed
def initialize(list)
@type = :list
@id = list.id
end
end