Add a test adapter and add deletion of sendeds scheduled sms

This commit is contained in:
osaajani 2019-12-20 18:31:19 +01:00
parent 99cdf6516a
commit 9eb701ba98
8 changed files with 134 additions and 12 deletions

View file

@ -93,6 +93,17 @@ namespace controllers\internals;
{
return $this->get_model()->delete_for_user($id_user, $id);
}
/**
* Delete a entry by his id
* @param int $id : Entry id
* @return int : Number of removed rows
*/
public function delete (int $id)
{
return $this->get_model()->delete($id);
}
/**