mirror of
https://gitlab.linphone.org/BC/public/flexisip-account-manager.git
synced 2026-01-17 10:08:05 +00:00
- Consume an ExternalAccount on Account creation - Add a tombstone to an ExternalAccount to ensure non re-usage - Add related tests - Generalize Utils - Stop public registration when there is no ExternalAccounts left - Add GenerateExternalAccounts, ExportToExternalAccounts and ImportExternalAccounts console scripts - Provision the ExternalAccount using the depends_on/idkey pair
18 lines
No EOL
275 B
PHP
18 lines
No EOL
275 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class HelperServiceProvider extends ServiceProvider
|
|
{
|
|
public function register()
|
|
{
|
|
require_once app_path('Helpers/Utils.php');
|
|
}
|
|
|
|
public function boot()
|
|
{
|
|
//
|
|
}
|
|
} |