mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 18:08:06 +00:00
Add aliases support through two new endpoints, allowing user to set a phone number on his account Hide the confirmation_key from the returned account JSON Bump version number
18 lines
308 B
PHP
18 lines
308 B
PHP
<?php
|
|
|
|
namespace App;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class PhoneChangeCode extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $connection = 'local';
|
|
|
|
public function account()
|
|
{
|
|
return $this->belongsTo('App\Account');
|
|
}
|
|
}
|