diff options
author | Sam Light <samlight1994@gmail.com> | 2022-09-06 12:28:29 +0100 |
---|---|---|
committer | Sam Light <samlight1994@gmail.com> | 2022-09-06 12:28:29 +0100 |
commit | 516cf804367366a4c0c237e6b8f4829d899c85f9 (patch) | |
tree | dbcf37990a81a7e0ab5ec8bb06fb76337b6284c6 /routes | |
parent | 04ef34a320e568175bca98a86a7bdb6aeaa9520c (diff) |
Cache bust javascript file
Diffstat (limited to 'routes')
-rw-r--r-- | routes/web.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/routes/web.php b/routes/web.php index b86d710..4570f11 100644 --- a/routes/web.php +++ b/routes/web.php @@ -10,6 +10,9 @@ Route::name('scorm-player.')->prefix('elearning')->middleware([ 'web', ])->group(function() { + Route::get('scorm-player-{version}.js', [ScormPlayerController::class, 'jsSource']) + ->name('javascript'); + $group = function() { Route::get('/scorm/{sco}', 'scormLoad')->name('scorm.load'); Route::post('/scorm/{tracking}', 'scormCommit')->name('scorm.commit'); @@ -26,4 +29,5 @@ Route::name('scorm-player.')->prefix('elearning')->middleware([ } $route->group($group); + }); |