feat: Add Dynamics to main navigation

This commit is contained in:
Daan Meijer
2026-06-15 01:03:38 +02:00
parent c31b4612df
commit 16a6962149
27 changed files with 41 additions and 44 deletions
+1 -1
View File
@@ -74,4 +74,4 @@ test('users are rate limited', function () {
]);
$response->assertTooManyRequests();
});
});
+1 -1
View File
@@ -98,4 +98,4 @@ test('already verified user visiting verification link is redirected without fir
Event::assertNotDispatched(Verified::class);
expect($user->fresh()->hasVerifiedEmail())->toBeTrue();
});
});
@@ -19,4 +19,4 @@ test('password confirmation requires authentication', function () {
$response = $this->get(route('password.confirm'));
$response->assertRedirect(route('login'));
});
});
+1 -1
View File
@@ -75,4 +75,4 @@ test('password cannot be reset with invalid token', function () {
]);
$response->assertSessionHasErrors('email');
});
});
+1 -1
View File
@@ -22,4 +22,4 @@ test('new users can register', function () {
$this->assertAuthenticated();
$response->assertRedirect(route('dashboard', absolute: false));
});
});
@@ -32,4 +32,4 @@ test('two factor challenge can be rendered', function () {
->assertInertia(fn (Assert $page) => $page
->component('auth/TwoFactorChallenge'),
);
});
});
@@ -31,4 +31,4 @@ test('does not send verification notification if email is verified', function ()
->assertRedirect(route('dashboard', absolute: false));
Notification::assertNothingSent();
});
});
+1 -1
View File
@@ -13,4 +13,4 @@ test('authenticated users can visit the dashboard', function () {
$response = $this->get(route('dashboard'));
$response->assertOk();
});
});
+1 -1
View File
@@ -4,4 +4,4 @@ test('returns a successful response', function () {
$response = $this->get(route('home'));
$response->assertOk();
});
});
+1 -1
View File
@@ -82,4 +82,4 @@ test('correct password must be provided to delete account', function () {
->assertRedirect(route('profile.edit'));
expect($user->fresh())->not->toBeNull();
});
});
+1 -1
View File
@@ -101,4 +101,4 @@ test('correct password must be provided to update password', function () {
$response
->assertSessionHasErrors('current_password')
->assertRedirect(route('security.edit'));
});
});
+1 -1
View File
@@ -2,4 +2,4 @@
test('that true is true', function () {
expect(true)->toBeTrue();
});
});