delete only howdy share links in demo mode

This commit is contained in:
Čarodej
2022-04-04 17:49:18 +02:00
parent 3d9272b05e
commit 80b2371868
2 changed files with 50 additions and 1 deletions
@@ -1,12 +1,20 @@
<?php
namespace Support\Demo\Actions;
use App\Users\Models\User;
use DB;
class DeleteAllSharedLinksAction
{
public function __invoke()
{
DB::table('shares')->delete();
// Get howdy account
$user = User::where('email', 'howdy@hi5ve.digital')
->first();
// Delete howdy shared links
DB::table('shares')
->where('user_id', $user->id)
->delete();
}
}