Return HTTP 404 for unknown journeys
This commit is contained in:
parent
2764826da0
commit
9232cdaa5f
1 changed files with 4 additions and 0 deletions
|
@ -660,6 +660,7 @@ sub journey_details {
|
|||
if ( not( $journey_id and $journey_id =~ m{ ^ \d+ $ }x ) ) {
|
||||
$self->render(
|
||||
'journey',
|
||||
status => 404,
|
||||
error => 'notfound',
|
||||
journey => {}
|
||||
);
|
||||
|
@ -683,6 +684,7 @@ sub journey_details {
|
|||
else {
|
||||
$self->render(
|
||||
'journey',
|
||||
status => 404,
|
||||
error => 'notfound',
|
||||
journey => {}
|
||||
);
|
||||
|
@ -743,6 +745,7 @@ sub edit_journey {
|
|||
if ( not( $journey_id =~ m{ ^ \d+ $ }x ) ) {
|
||||
$self->render(
|
||||
'edit_journey',
|
||||
status => 404,
|
||||
error => 'notfound',
|
||||
journey => {}
|
||||
);
|
||||
|
@ -759,6 +762,7 @@ sub edit_journey {
|
|||
if ( not $journey ) {
|
||||
$self->render(
|
||||
'edit_journey',
|
||||
status => 404,
|
||||
error => 'notfound',
|
||||
journey => {}
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue