about summary refs log tree commit diff
path: root/app/models/list_feed.rb
blob: 47b9281b8c29765e94aa4316265315be85090481 (plain) (blame)
1
2
3
4
5
6
7
# frozen_string_literal: true

class ListFeed < Feed
  def initialize(list)
    super(:list, list.id)
  end
end