respond_to correction

This commit is contained in:
Luc Didry 2017-07-19 20:26:26 +02:00
parent 1c2cee539d
commit abebf60861
1 changed files with 12 additions and 6 deletions

View File

@ -392,8 +392,10 @@ sub delete {
}
return $c->respond_to(
json => {
success => true,
msg => $msg
json => {
success => true,
msg => $msg
}
},
any => sub {
$c->render(
@ -407,8 +409,10 @@ sub delete {
my $msg = $c->l('Could not find the file. Are you sure of the URL and the token?');
return $c->respond_to(
json => {
success => false,
msg => $msg
json => {
success => false,
msg => $msg
}
},
any => sub {
$c->render(
@ -423,8 +427,10 @@ sub delete {
my $msg = $c->l('Could not delete the file. You are not authenticated.');
return $c->respond_to(
json => {
success => false,
msg => $msg
json => {
success => false,
msg => $msg
}
},
any => sub {
$c->render(