Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
danpalmieri committed Apr 19, 2024
2 parents cce3334 + 3d3e278 commit 6993e39
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `jetstream-team-url` will be documented in this file.

## v0.4.3 - 2024-04-17

bugfixes

## v0.4.2 - 2024-04-17

bug fixes
Expand Down
4 changes: 2 additions & 2 deletions src/JetstreamTeamUrlServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ public function bootingPackage(): void

Route::prefix($route)->group(function () use ($route) {
Route::get('{any}', function () use ($route) {
if(session()->has(config('jetstream-team-url.on_denied.redirect.with.key'))){
if (session()->has(config('jetstream-team-url.on_denied.redirect.with.key'))) {
session()->flash(
config('jetstream-team-url.on_denied.redirect.with.key'),
session(config('jetstream-team-url.on_denied.redirect.with.key')
));
));
}

$attribute = config('jetstream-team-url.url.team_attribute');
Expand Down

0 comments on commit 6993e39

Please sign in to comment.