mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
efffdd3778
* disable NewCops * update TargetRubyVersion * Fix Lint/MissingSuper for ActiveModelSerializers::Model * Fix Lint/MissingSuper for feed * Fix Lint/FloatComparison * Do not use instance variables
8 lines
112 B
Ruby
8 lines
112 B
Ruby
# frozen_string_literal: true
|
|
|
|
class ListFeed < Feed
|
|
def initialize(list)
|
|
super(:list, list.id)
|
|
end
|
|
end
|