-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ca: remove refid replacement (#2738)
- Loading branch information
1 parent
7326531
commit 34db0b2
Showing
7 changed files
with
27 additions
and
213 deletions.
There are no files selected for viewing
67 changes: 0 additions & 67 deletions
67
sourcecode/apis/contentauthor/app/Http/Controllers/Admin/NDLAReplaceRefController.php
This file was deleted.
Oops, something went wrong.
94 changes: 0 additions & 94 deletions
94
sourcecode/apis/contentauthor/app/Jobs/ReplaceVideoRefId.php
This file was deleted.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
...apis/contentauthor/database/migrations/2024_06_14_080000_drop_h5p_refid_support_table.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
use Illuminate\Database\Migrations\Migration; | ||
use Illuminate\Database\Schema\Blueprint; | ||
use Illuminate\Support\Facades\Schema; | ||
|
||
return new class () extends Migration { | ||
public function up(): void | ||
{ | ||
Schema::dropIfExists('h5p_refid_support'); | ||
} | ||
|
||
public function down(): void | ||
{ | ||
Schema::create('h5p_refid_support', function (Blueprint $table) { | ||
$table->bigIncrements('id'); | ||
$table->timestamps(); | ||
$table->integer('content_id'); | ||
$table->string('title'); | ||
$table->boolean('processed')->default(0); | ||
$table->boolean('istarget')->default(0); | ||
$table->unique(['content_id']); | ||
}); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 0 additions & 37 deletions
37
sourcecode/apis/contentauthor/resources/views/admin/video/replaceref.blade.php
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters