You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mastodon/app
Akihiko Odaki ae871c4d46
Make Array-creation behavior of Paginable more predictable (#14687)
* Make Array-creation behavior of Paginable more predictable

Paginable.paginate_by_id usually returns ActiveRecord::Relation, but it
returns an Array if min_id option is present. The behavior caused problems
fixed with the following commits:
- 552e886b64
- b63ede5005
- 64ef37b89d

To prevent from recurring similar problems, this commit introduces two
changes:
- The scope now always returns an Array whether min_id option is present
  or not.
- The scope is renamed to to_a_paginated_by_id to clarify it returns an
  Array.

* Transform Paginable.to_a_paginated_by_id from a scope to a class method

https://api.rubyonrails.org/classes/ActiveRecord/Scoping/Named/ClassMethods.html#method-i-scope
> The method is intended to return an ActiveRecord::Relation object, which
> is composable with other scopes.

Paginable.to_a_paginated_by_id returns an Array and is not appropriate
as a scope.
5 years ago
..
chewy Change `tootctl search deploy` algorithm (#14300) 5 years ago
controllers Make Array-creation behavior of Paginable more predictable (#14687) 5 years ago
helpers Add a visibility icon to status (#14123) 5 years ago
javascript Add WebAuthn as an alternative 2FA method (#14466) 5 years ago
lib Add support for dereferencing objects through bearcaps (#14683) 5 years ago
mailers Add WebAuthn as an alternative 2FA method (#14466) 5 years ago
models Make Array-creation behavior of Paginable more predictable (#14687) 5 years ago
policies Add ability to delete files uploaded for settings in admin UI (#13192) 5 years ago
presenters Add user notes on accounts (#14148) 5 years ago
serializers Add thumbnail_remote_url in MediaAttachment REST response (#14358) 5 years ago
services Fix inefficiencies in fan-out-on-write service (#14682) 5 years ago
validators Improve email address validation (#14565) 5 years ago
views Add WebAuthn as an alternative 2FA method (#14466) 5 years ago
workers Changed retries and rescued in ActivityPub::ProcessingWorker (#14355) 5 years ago