deleteArticle -> Autorisierungsprüfung
This commit is contained in:
@@ -40,15 +40,15 @@ interface ArticleManagerDAO
|
||||
public function updateArticle($id, $article, $author);
|
||||
|
||||
/**
|
||||
* Löscht einen Beitrag aus übergebener ID.
|
||||
* TODO: sollte auch die Autorisierung prüfen...
|
||||
* Löscht einen Beitrag aus übergebener ID und dem Nutzer, der die Löschung ausführt.
|
||||
* @param $id
|
||||
* @param $author
|
||||
* @return void
|
||||
* @throws InternalServerErrorException
|
||||
* @throws NotFoundException
|
||||
* @throws UnauthorizedAccessException
|
||||
*/
|
||||
public function deleteArticle($id);
|
||||
public function deleteArticle($id, $author);
|
||||
|
||||
/**
|
||||
* Beitrag aufrufen.
|
||||
|
||||
Reference in New Issue
Block a user