This website requires JavaScript.
Explore
Help
Register
Sign In
luna
/
mastodon
Watch
0
Star
0
Fork
You've already forked mastodon
0
mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced
2024-11-02 13:04:37 +00:00
Code
Issues
Projects
Releases
Wiki
Activity
95a036c598
mastodon
/
app
/
models
/
list_feed.rb
8 lines
112 B
Ruby
Raw
Normal View
History
Unescape
Escape
Lists (#5703) * Add structure for lists * Add list timeline streaming API * Add list APIs, bind list-account relation to follow relation * Add API for adding/removing accounts from lists * Add pagination to lists API * Add pagination to list accounts API * Adjust scopes for new APIs - Creating and modifying lists merely requires "write" scope - Fetching information about lists merely requires "read" scope * Add test for wrong user context on list timeline * Clean up tests
2017-11-17 23:16:48 +00:00
# frozen_string_literal: true
class
ListFeed
<
Feed
def
initialize
(
list
)
Fix rubocop config and warnings (#15503) * disable NewCops * update TargetRubyVersion * Fix Lint/MissingSuper for ActiveModelSerializers::Model * Fix Lint/MissingSuper for feed * Fix Lint/FloatComparison * Do not use instance variables
2021-01-07 08:40:55 +00:00
super
(
:list
,
list
.
id
)
Lists (#5703) * Add structure for lists * Add list timeline streaming API * Add list APIs, bind list-account relation to follow relation * Add API for adding/removing accounts from lists * Add pagination to lists API * Add pagination to list accounts API * Adjust scopes for new APIs - Creating and modifying lists merely requires "write" scope - Fetching information about lists merely requires "read" scope * Add test for wrong user context on list timeline * Clean up tests
2017-11-17 23:16:48 +00:00
end
end
Reference in a new issue
Copy permalink