Skip to content

Commit

Permalink
Merge branch 'release/0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
jxjj committed Jul 21, 2022
2 parents e19b899 + 34496a4 commit 1fdf48f
Show file tree
Hide file tree
Showing 51 changed files with 12,460 additions and 12,295 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/TourEditController.php
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ public function joinTour(Tour $tour, $tourCode)
if (sha1(Auth::user()->email . $tour->id) == $tourCode) {
$tour->users()->attach(Auth::user());
$tour->save();
return redirect("/creator/" . $tour->id);
return redirect("/creator/tours/" . $tour->id);
} else {
abort(403, 'Access denied');
}
Expand Down
Loading

0 comments on commit 1fdf48f

Please sign in to comment.