- if dataset has no doi, show normal landingpage in search site (vue component)

This commit is contained in:
Arno Kaimbacher 2021-06-02 11:19:27 +02:00
parent da06f84659
commit 9138090e14
4 changed files with 7 additions and 4 deletions

View file

@ -21,10 +21,10 @@ Route::group([
'domain' => 'doi.' . $base_domain,
'as' => 'doi'
], function () {
$dataset_prefix = config('tethys.datacite_prefix');
// $dataset_prefix = config('tethys.datacite_prefix');
Route::get('/' . $dataset_prefix . '/tethys.{id}', [
Route::get('/{dataset_prefix}/tethys.{id}', [
'as' => 'dataset.show', 'uses' => 'Frontend\PagesController@show',
]);