1
0
This repository has been archived on 2021-02-16. You can view files and clone it, but cannot push or open issues or pull requests.
Files
ttv-streamkit/app/User.php
2020-04-29 23:58:18 +02:00

23 lines
430 B
PHP

<?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");
}
}