1
0

First commit

This commit is contained in:
2020-04-29 23:58:18 +02:00
commit f3230a32ce
108 changed files with 77210 additions and 0 deletions

25
app/WebhookAction.php Normal file
View File

@@ -0,0 +1,25 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class WebhookAction extends Model
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [
"discord_hook_url"
];
/**
* Get the twitch webhook that executes this action.
*/
public function twitchWebhook() {
return $this->belongsTo("App\TwitchWebhook", "webhook_id");
}
}