Skip to content

Commit

Permalink
chore: bump dependencies & fixed video notification in upload video a…
Browse files Browse the repository at this point in the history
…ction (#731)
  • Loading branch information
Kyrch authored Aug 23, 2024
1 parent cc2e3e1 commit f782d17
Show file tree
Hide file tree
Showing 7 changed files with 110 additions and 135 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ protected function afterUploaded(BaseModel $video, array $data): void
}

if (Arr::get($data, self::SHOULD_SEND_NOTIFICATION) === 'yes') {
$videos = new Collection($video);
$videos = new Collection([$video]);

$discordNotificationAction = new VideoDiscordNotificationBulkAction('discord');
$discordNotificationAction->handle($videos, $data);
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"bezhansalleh/filament-exceptions": "^2.1",
"cyrildewit/eloquent-viewable": "^7.0",
"fakerphp/faker": "^1.21",
"filament/filament": "^3.2.102",
"filament/forms": "^3.2.102",
"filament/filament": "^3.2.107",
"filament/forms": "^3.2.107",
"flowframe/laravel-trend": "*",
"guzzlehttp/guzzle": "^7.5",
"laravel-notification-channels/discord": "^1.4",
Expand Down
202 changes: 101 additions & 101 deletions composer.lock

Large diffs are not rendered by default.

29 changes: 0 additions & 29 deletions database/seeders/Wiki/KitsuResourceSeeder.php

This file was deleted.

2 changes: 1 addition & 1 deletion public/vendor/telescope/app.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/vendor/telescope/mix-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"/app.js": "/app.js?id=7049e92a398e816f8cd53a915eaea592",
"/app.js": "/app.js?id=48ba33a2532e4b6ec718bc0f03b3f1e4",
"/app-dark.css": "/app-dark.css?id=1ea407db56c5163ae29311f1f38eb7b9",
"/app.css": "/app.css?id=de4c978567bfd90b38d186937dee5ccf"
}
4 changes: 4 additions & 0 deletions tests/Feature/Http/Api/List/Playlist/Track/TrackStoreTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,10 @@ public function testRequiredFields(): void
*/
public function testAnimeThemeEntryVideoExists(): void
{
Event::fakeExcept([PlaylistCreated::class, TrackCreated::class]);

Feature::activate(AllowPlaylistManagement::class);

$entry = AnimeThemeEntry::factory()
->for(AnimeTheme::factory()->for(Anime::factory()))
->create();
Expand Down

0 comments on commit f782d17

Please sign in to comment.