This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-11-18 00:16:48 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class ListFeed < Feed
|
|
|
|
def initialize(list)
|
2021-01-07 09:40:55 +01:00
|
|
|
super(:list, list.id)
|
2017-11-18 00:16:48 +01:00
|
|
|
end
|
|
|
|
end
|