diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f2f2c9d9..6b7fd26a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ ### Updated - Updated presenter components, load fallback image on errors ([273170c5](https://github.com/pixelfed/pixelfed/commit/273170c5)) +- Updated Story model, hide json attribute by default ([de89403c](https://github.com/pixelfed/pixelfed/commit/de89403c)) +- Updated compose view, add deprecation notice for v3 ([57e155b9](https://github.com/pixelfed/pixelfed/commit/57e155b9)) ### Changed diff --git a/app/Story.php b/app/Story.php index b80101aec..3e6c0266e 100644 --- a/app/Story.php +++ b/app/Story.php @@ -30,6 +30,8 @@ class Story extends Model protected $visible = ['id']; + protected $hidden = ['json']; + public function profile() { return $this->belongsTo(Profile::class); diff --git a/resources/views/status/compose.blade.php b/resources/views/status/compose.blade.php index 9aeb21eac..62624da05 100644 --- a/resources/views/status/compose.blade.php +++ b/resources/views/status/compose.blade.php @@ -5,6 +5,11 @@
+
+ ComposeUI v3 is deprecated +
+ It will be removed after June 1st, 2020 +

Compose New Post