mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 01:58:07 +00:00
Add AccountType model, CRUD and tests Add AccountContact model, CRUD and tests Allow users to retreive their contacts in JSON and VCARD4.0 format Update the dependencies Complete the documentation Improve the messages displayed when removing accounts in RemoveUnconfirmedAccounts Fix a bug in DeviceController Fix README
12 lines
205 B
PHP
12 lines
205 B
PHP
<?php
|
|
|
|
use Database\Seeders\AccountTypeSeeder;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
class DatabaseSeeder extends Seeder
|
|
{
|
|
public function run()
|
|
{
|
|
$this->call(AccountTypeSeeder::class);
|
|
}
|
|
}
|