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

22
app/User.php Normal file
View File

@@ -0,0 +1,22 @@
<?php
namespace App;
use Illuminate\Foundation\Auth\User as Authenticatable;
class User extends Authenticatable
{
/**
* Get the access tokens of the user.
*/
public function accessTokens() {
return $this->hasMany("App\UserAccessToken");
}
/**
* Get all configured twitch webhooks
*/
public function twitchWebhooks() {
return $this->hasMany("App\TwitchWebhook");
}
}