Add support for mms

This commit is contained in:
osaajani 2019-12-04 03:04:45 +01:00
parent 88b00e4e9f
commit fb10b9cdfd
20 changed files with 979 additions and 118 deletions

21
models/Webhook.php Executable file
View file

@ -0,0 +1,21 @@
<?php
/*
* This file is part of RaspiSMS.
*
* (c) Pierre-Lin Bonnemaison <plebwebsas@gmail.com>
*
* This source file is subject to the GPL-3.0 license that is bundled
* with this source code in the file LICENSE.
*/
namespace models;
class Webhook extends StandardModel
{
/**
* Return table name
* @return string
*/
protected function get_table_name() : string { return 'webhook'; }
}