Change snipe-it commands to use common namespace

This commit is contained in:
snipe 2016-04-19 00:47:32 -07:00
parent e4b5d426db
commit 4161a8af29
8 changed files with 8 additions and 7 deletions

View file

@ -20,7 +20,7 @@ class AssetImportCommand extends Command {
* *
* @var string * @var string
*/ */
protected $name = 'asset-import:csv'; protected $name = 'snipeit:asset-import';
/** /**
* The console command description. * The console command description.

View file

@ -11,7 +11,7 @@ class CreateAdmin extends Command
* *
* @var string * @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. * The console command description.

View file

@ -13,7 +13,7 @@ class DisableLDAP extends Command
* *
* @var string * @var string
*/ */
protected $signature = 'ldap:disable'; protected $signature = 'snipeit:ldap-disable';
/** /**
* The console command description. * The console command description.

View file

@ -13,7 +13,7 @@ class LicenseImportCommand extends Command {
* *
* @var string * @var string
*/ */
protected $name = 'license-import:csv'; protected $name = 'snipeit:license-import';
/** /**
* The console command description. * The console command description.

View file

@ -12,7 +12,7 @@ class PaveIt extends Command
* *
* @var string * @var string
*/ */
protected $signature = 'pave'; protected $signature = 'snipeit:pave';
/** /**
* The console command description. * The console command description.

View file

@ -15,7 +15,7 @@ class SendExpirationAlerts extends Command {
* *
* @var string * @var string
*/ */
protected $name = 'alerts:expiring'; protected $name = 'snipeit:expiring-alerts';
/** /**
* The console command description. * The console command description.

View file

@ -16,7 +16,7 @@ class SendInventoryAlerts extends Command
* *
* @var string * @var string
*/ */
protected $signature = 'alerts:inventory'; protected $signature = 'snipeit:inventory-alerts';
/** /**
* The console command description. * The console command description.

View file

@ -22,6 +22,7 @@ class Kernel extends ConsoleKernel
Commands\Versioning::class, Commands\Versioning::class,
Commands\SystemBackup::class, Commands\SystemBackup::class,
Commands\DisableLDAP::class, Commands\DisableLDAP::class,
Commands\Purge::class,
]; ];
/** /**