flexisip-account-manager/flexiapi/app/EmailChanged.php
Timothée Jaussoin 8fd85c00d2 Complete the documentation regarding how DotEnv configuration is handled
Add a confirmation flow using a email when an account tries to change one
2020-09-14 16:41:47 +02:00

16 lines
269 B
PHP

<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class EmailChanged extends Model
{
protected $connection = 'local';
protected $table = 'email_changed';
public function account()
{
return $this->belongsTo('App\Account');
}
}