mirror of
https://github.com/snipe/snipe-it.git
synced 2024-12-24 05:04:07 -08:00
Change snipe-it commands to use common namespace
This commit is contained in:
parent
e4b5d426db
commit
4161a8af29
|
@ -20,7 +20,7 @@ class AssetImportCommand extends Command {
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $name = 'asset-import:csv';
|
||||
protected $name = 'snipeit:asset-import';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
|
|
@ -11,7 +11,7 @@ class CreateAdmin extends Command
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'admin:create {--first_name=} {--last_name=} {--email=} {--username=} {--password=}';
|
||||
protected $signature = 'snipeit:create-admin {--first_name=} {--last_name=} {--email=} {--username=} {--password=}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
|
|
@ -13,7 +13,7 @@ class DisableLDAP extends Command
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'ldap:disable';
|
||||
protected $signature = 'snipeit:ldap-disable';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
|
|
@ -13,7 +13,7 @@ class LicenseImportCommand extends Command {
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $name = 'license-import:csv';
|
||||
protected $name = 'snipeit:license-import';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
|
|
@ -12,7 +12,7 @@ class PaveIt extends Command
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'pave';
|
||||
protected $signature = 'snipeit:pave';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
|
|
@ -15,7 +15,7 @@ class SendExpirationAlerts extends Command {
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $name = 'alerts:expiring';
|
||||
protected $name = 'snipeit:expiring-alerts';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
|
|
@ -16,7 +16,7 @@ class SendInventoryAlerts extends Command
|
|||
*
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'alerts:inventory';
|
||||
protected $signature = 'snipeit:inventory-alerts';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
|
|
@ -22,6 +22,7 @@ class Kernel extends ConsoleKernel
|
|||
Commands\Versioning::class,
|
||||
Commands\SystemBackup::class,
|
||||
Commands\DisableLDAP::class,
|
||||
Commands\Purge::class,
|
||||
];
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue