Skip to content

Commit 7fb83a4

Browse files
author
Sebastian Fix
committed
wip
1 parent e904477 commit 7fb83a4

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

database/seeders/Codebar/ConfigurationsTableSeeder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ public function run(): void
1919
'company_primary_color' => '#500472',
2020

2121
'component_intro' => [
22-
LocaleEnum::DE->value => file_get_contents(database_path('seeders/files/codebar_intro_de.md')),
23-
LocaleEnum::EN->value => file_get_contents(database_path('seeders/files/codebar_intro_en.md')),
22+
LocaleEnum::DE->value => file_get_contents(database_path('files/intro/codebar_intro_de.md')),
23+
LocaleEnum::EN->value => file_get_contents(database_path('files/intro/codebar_intro_en.md')),
2424
],
2525

2626
'section_news' => false,

database/seeders/Paperflakes/ConfigurationsTableSeeder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ public function run(): void
1818
'company_primary_color' => '#69b3a1',
1919

2020
'component_intro' => [
21-
LocaleEnum::DE->value => file_get_contents(database_path('seeders/files/paperflakes_intro_de.md')),
22-
LocaleEnum::EN->value => file_get_contents(database_path('seeders/files/paperflakes_intro_en.md')),
21+
LocaleEnum::DE->value => file_get_contents(database_path('files/intro/paperflakes_intro_de.md')),
22+
LocaleEnum::EN->value => file_get_contents(database_path('files/intro/paperflakes_intro_en.md')),
2323
],
2424

2525
'section_news' => true,

resources/views/layouts/app.blade.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ class="scroll-smooth"
77
<meta charset="utf-8"/>
88
<meta name="viewport" content="width=device-width, initial-scale=1"/>
99
<meta name="csrf-token" content="{{ csrf_token() }}"/>
10+
<meta property="csp-nonce" content="{{ csp_nonce() }}">
1011

1112
<!-- Resource hints for performance -->
1213
<link rel="preconnect" href="https://res.cloudinary.com">

0 commit comments

Comments
 (0)