mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-11 13:33:21 -08:00
* disable NewCops * update TargetRubyVersion * Fix Lint/MissingSuper for ActiveModelSerializers::Model * Fix Lint/MissingSuper for feed * Fix Lint/FloatComparison * Do not use instance variables
7 lines
112 B
Ruby
7 lines
112 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ListFeed < Feed
|
|
def initialize(list)
|
|
super(:list, list.id)
|
|
end
|
|
end
|