mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-23 13:33:18 +00:00
commit
412ec6b22e
9 changed files with 57 additions and 0 deletions
|
@ -85,6 +85,7 @@
|
||||||
- Update SettingsController, fix double json encoding and cache settings for 7 days ([4514ab1d](https://github.com/pixelfed/pixelfed/commit/4514ab1d))
|
- Update SettingsController, fix double json encoding and cache settings for 7 days ([4514ab1d](https://github.com/pixelfed/pixelfed/commit/4514ab1d))
|
||||||
- Update ApiV1Controller, fix mute/block entities ([364adb43](https://github.com/pixelfed/pixelfed/commit/364adb43))
|
- Update ApiV1Controller, fix mute/block entities ([364adb43](https://github.com/pixelfed/pixelfed/commit/364adb43))
|
||||||
- Update atom feed, remove invalid entities ([e362ef9e](https://github.com/pixelfed/pixelfed/commit/e362ef9e))
|
- Update atom feed, remove invalid entities ([e362ef9e](https://github.com/pixelfed/pixelfed/commit/e362ef9e))
|
||||||
|
- Update StatusObserver, handle events after all transactions are committed ([805a014e](https://github.com/pixelfed/pixelfed/commit/805a014e))
|
||||||
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
- ([](https://github.com/pixelfed/pixelfed/commit/))
|
||||||
|
|
||||||
## [v0.11.3 (2022-05-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.2...v0.11.3)
|
## [v0.11.3 (2022-05-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.2...v0.11.3)
|
||||||
|
|
|
@ -9,6 +9,13 @@ use App\Services\AccountService;
|
||||||
|
|
||||||
class AvatarObserver
|
class AvatarObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the avatar "created" event.
|
* Handle the avatar "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\LikeService;
|
||||||
|
|
||||||
class LikeObserver
|
class LikeObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the Like "created" event.
|
* Handle the Like "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -9,6 +9,13 @@ use Log;
|
||||||
|
|
||||||
class ModLogObserver
|
class ModLogObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the mod log "created" event.
|
* Handle the mod log "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\NotificationService;
|
||||||
|
|
||||||
class NotificationObserver
|
class NotificationObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the notification "created" event.
|
* Handle the notification "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\AccountService;
|
||||||
|
|
||||||
class ProfileObserver
|
class ProfileObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the Profile "created" event.
|
* Handle the Profile "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\StatusHashtagService;
|
||||||
|
|
||||||
class StatusHashtagObserver
|
class StatusHashtagObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the notification "created" event.
|
* Handle the notification "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\ProfileStatusService;
|
||||||
|
|
||||||
class StatusObserver
|
class StatusObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the Status "created" event.
|
* Handle the Status "created" event.
|
||||||
*
|
*
|
||||||
|
|
|
@ -7,6 +7,13 @@ use App\Services\UserFilterService;
|
||||||
|
|
||||||
class UserFilterObserver
|
class UserFilterObserver
|
||||||
{
|
{
|
||||||
|
/**
|
||||||
|
* Handle events after all transactions are committed.
|
||||||
|
*
|
||||||
|
* @var bool
|
||||||
|
*/
|
||||||
|
public $afterCommit = true;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handle the user filter "created" event.
|
* Handle the user filter "created" event.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue