Skip to content

Commit

Permalink
Better error message and updated licence
Browse files Browse the repository at this point in the history
  • Loading branch information
loewexy committed May 13, 2018
1 parent bf9f68a commit 7cb0251
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@
same "printed page" as the copyright notice for easier
identification within third-party archives.

Copyright 2016-2017 Lukas Metzger
Copyright 2016-2018 Lukas Metzger

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
Expand Down
4 changes: 2 additions & 2 deletions backend/src/controllers/Remote.php
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ public function updateKey(Request $req, Response $res, array $args)
$this->logger->debug('User tried to update non existent record via changekey api.');
return $res->withJson(['error' => 'The given record does not exist.'], 404);
} catch (\Exceptions\ForbiddenException $e) {
$this->logger->debug('User tried to update an record via changekey api with incorrect password.');
return $res->withJson(['error' => 'The provided password was invalid.'], 403);
$this->logger->debug('User tried to update an record via changekey api with incorrect signature.');
return $res->withJson(['error' => 'The provided signature was invalid.'], 403);
}

$this->logger->info('Record ' . $record . ' was changed via the changekey api.');
Expand Down

0 comments on commit 7cb0251

Please sign in to comment.