Merge pull request #1815 from pixelfed/staging

Staging
pull/1827/head
daniel 2019-11-10 20:55:03 -07:00 zatwierdzone przez GitHub
commit 85485bba8b
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
2 zmienionych plików z 3 dodań i 1 usunięć

Wyświetl plik

@ -42,6 +42,7 @@
- Updated AccountTransformer, added ```local``` attribute ([d2a90f11](https://github.com/pixelfed/pixelfed/commit/d2a90f11))
- Updated Laravel framework from v5.8 to v6.x ([3aff6de33](https://github.com/pixelfed/pixelfed/commit/3aff6de33))
- Updated FollowerController to fix bug affecting private profiles ([a429d961](https://github.com/pixelfed/pixelfed/commit/a429d961))
- Updated StatusTransformer, added ```local``` attribute ([484bb509](https://github.com/pixelfed/pixelfed/commit/484bb509))
## Deprecated

Wyświetl plik

@ -47,7 +47,8 @@ class StatusTransformer extends Fractal\TransformerAbstract
'thread' => false,
'replies' => [],
'parent' => [],
'place' => $status->place
'place' => $status->place,
'local' => (bool) $status->local,
];
}