Add oauth to User model

pull/426/head
Daniel Supernault 2018-08-31 18:38:07 -06:00
rodzic 0f6d1ed150
commit c1f66b968e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 0DEF1C662C9033F7
1 zmienionych plików z 3 dodań i 2 usunięć

Wyświetl plik

@ -2,13 +2,14 @@
namespace App;
use Laravel\Passport\HasApiTokens;
use Illuminate\Notifications\Notifiable;
use Illuminate\Database\Eloquent\SoftDeletes;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
class User extends Authenticatable
{
use Notifiable, SoftDeletes;
use Notifiable, SoftDeletes, HasApiTokens;
/**
* The attributes that should be mutated to dates.