mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-18 00:43:16 -08:00
8 lines
130 B
Ruby
8 lines
130 B
Ruby
|
|
# frozen_string_literal: true
|
||
|
|
|
||
|
|
class ListFeed < Feed
|
||
|
|
def initialize(list)
|
||
|
|
@type = :list
|
||
|
|
@id = list.id
|
||
|
|
end
|
||
|
|
end
|