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.
pixelfed/app/Transformer/Api
Your Name c0f29d4a4b Fix web notifications not loading (#7195)
Notification status hydration compared item_type strictly against
Status::class (App\Models\Status). Rows created before the App\ ->
App\Models\ namespace migration store the legacy 'App\Status' morph-map
alias, so the comparison failed and favourite/comment/mention
notifications came back with no attached status. The web UI filters those
out client-side but keeps paginating (response never empty), leaving the
infinite-scroll loader spinning forever.

- NotificationTransformer + Mastodon NotificationTransformer: match both
  the legacy alias and the current FQCN when hydrating status.
- NotificationService::buildNotification: same alias-aware deleted-item guard.
- NotificationService::getMaxPage/getMinPage: filter out unrenderable
  notifications (status-type without a hydrated status) so the endpoint
  never returns rows the UI discards, fixing pagination termination; warn
  on unexpected notification types.
- Tests for transformer hydration (legacy + current), renderable filtering,
  the unexpected-type warning, and pagination termination.
2 weeks ago
..
Mastodon/v1 Fix web notifications not loading (#7195) 2 weeks ago
AccountTransformer.php Update StoryService and add has_story to AccountTransformer 2 weeks ago
AccountWithStatusesTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
ApplicationTransformer.php
ContextTransformer.php
DirectMessageTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
EmojiTransformer.php
FilterTransformer.php
GroupPostTransformer.php
HashtagTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
InstanceTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
MediaDraftTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
MediaTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
MentionTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
NotificationTransformer.php Fix web notifications not loading (#7195) 2 weeks ago
RelationshipTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
ResultsTransformer.php
StatusHashtagTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
StatusStatelessTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
StatusTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
StoryItemTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago
StoryTransformer.php refactor: move 52 legacy models from App\ to App\Models\ 4 weeks ago