Skip to content

Commit

Permalink
fix job not being queued (#2929)
Browse files Browse the repository at this point in the history
  • Loading branch information
emmachughes authored Jan 24, 2025
1 parent 0dcc484 commit 5bbcf62
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion sourcecode/hub/app/Jobs/AttachContextToContents.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@
use App\Models\Content;
use App\Models\Context;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldBeUnique;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\SerializesModels;

class AttachContextToContents
class AttachContextToContents implements ShouldQueue, ShouldBeUnique
{
use Dispatchable;
use Queueable;
Expand Down

0 comments on commit 5bbcf62

Please sign in to comment.