Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,4 +115,4 @@ Thanks go to these wonderful people for their contributions:
 


LinkAce is a project by [Kevin Woblick](https://kovah.de) and [Contributors](https://github.com/Kovah/LinkAce/graphs/contributors)
LinkAce is a project by [Kevin Woblick](https://woblick.dev) and [Contributors](https://github.com/Kovah/LinkAce/graphs/contributors)
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ RUN npm run production
FROM docker.io/linkace/base-image:2.x-php-8.4

LABEL org.opencontainers.image.title="LinkAce"
LABEL org.opencontainers.image.authors="Kevin Woblick <mail@kovah.de>"
LABEL org.opencontainers.image.authors="Kevin Woblick <mail@woblick.dev>"
LABEL org.opencontainers.image.url="https://www.linkace.org"
LABEL org.opencontainers.image.source="https://github.com/Kovah/LinkAce"

Expand Down
2 changes: 1 addition & 1 deletion resources/views/layouts/partials/footer.blade.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<aside class="footer container text-center small pt-3 pb-5">
<div>
@lang('linkace.project_of') <a href="https://kovah.de/?utm_source=linkace" rel="noopener" target="_blank">Kovah.de</a>
@lang('linkace.project_of') <a href="https://woblick.dev/?utm_source=linkace" rel="noopener" target="_blank">Woblick.dev</a>
@if(systemsettings('additional_footer_link_url') && systemsettings('additional_footer_link_text'))
| <a href="{{ systemsettings('additional_footer_link_url') }}" rel="noreferrer noopener" target="_blank">
{{ systemsettings('additional_footer_link_text') }}
Expand Down
8 changes: 4 additions & 4 deletions tests/Controller/App/SystemSettingsControllerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,19 @@ public function test_valid_settings_update_response(): void
$response = $this->post('settings/system', [
'page_title' => 'New HTML Title',
'logo_text' => 'Meine Bookmarks',
'additional_footer_link_url' => 'https://kovah.de',
'additional_footer_link_url' => 'https://woblick.dev',
'additional_footer_link_text' => 'Portfolio',
'contact_page_enabled' => '1',
'contact_page_title' => 'ContactPage',
'contact_page_content' => '**Example** with [link](https://kovah.de)',
'contact_page_content' => '**Example** with [link](https://woblick.dev)',
'custom_header_content' => '<script>console.log(\'scripts work\')</script>',
]);

$response->assertRedirect('settings/system');

$this->assertEquals('New HTML Title', systemsettings('page_title'));
$this->assertEquals('Meine Bookmarks', systemsettings('logo_text'));
$this->assertEquals('https://kovah.de', systemsettings('additional_footer_link_url'));
$this->assertEquals('https://woblick.dev', systemsettings('additional_footer_link_url'));
$this->assertEquals('Portfolio', systemsettings('additional_footer_link_text'));
$this->assertTrue(systemsettings('contact_page_enabled'));

Expand All @@ -77,7 +77,7 @@ public function test_valid_settings_update_response(): void
->assertSee('Meine Bookmarks')
->assertSee('Portfolio')
->assertSee('ContactPage')
->assertSee('<strong>Example</strong> with <a href="https://kovah.de">link</a>', false);
->assertSee('<strong>Example</strong> with <a href="https://woblick.dev">link</a>', false);
}

public function test_valid_guest_settings_update_response(): void
Expand Down
Loading