diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index f563818..4a59bdd 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -26,6 +26,7 @@ class Kernel extends ConsoleKernel { $schedule->command('today:schedule')->daily(); $schedule->command('today:run')->everyMinute(); + $schedule->command('sms:update:status rahyab')->everyTwoHours(); $schedule->command('domain:update_ssl_expiry_date')->daily(); # update SSL expired_at $schedule->command('domain:update_domain_expiry_date')->daily(); # update domain expired_at } diff --git a/composer-prod.json b/composer-prod.json index 482a7ac..868b590 100644 --- a/composer-prod.json +++ b/composer-prod.json @@ -30,6 +30,7 @@ "wm/store": "dev-master", "wm/admin": "dev-master", "wm/notification": "dev-master", + "wm/roll-call": "dev-master", "zircote/swagger-php": "^3.0" }, "provide": { @@ -120,6 +121,10 @@ "type": "vcs", "url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/notification.git" }, + { + "type": "vcs", + "url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/roll-call.git" + }, { "type": "vcs", "url": "https://58848959365c8b792ba52b7552230260bddd9762@git.willaspace.com/WillaEngine-Project/admin.git" diff --git a/database/seeds/DatabaseSeeder.php b/database/seeds/DatabaseSeeder.php index 83912d8..018ff10 100644 --- a/database/seeds/DatabaseSeeder.php +++ b/database/seeds/DatabaseSeeder.php @@ -12,14 +12,14 @@ class DatabaseSeeder extends Seeder */ public function run() { - $this->call(UserSeeder::class); - $this->call(BusinessSeeder::class); + $this->call(ModuleSeeder::class); $this->call(CategorySeeder::class); + $this->call(BusinessSeeder::class); + $this->call(UserSeeder::class); $this->call(CitySeeder::class); $this->call(DistrictSeeder::class); $this->call(DomainSeeder::class); $this->call(HelpSeeder::class); - $this->call(ModuleSeeder::class); $this->call(PermissionCategorySeeder::class); $this->call(RoleSeeder::class); } diff --git a/webpack.mix.js b/webpack.mix.js index ce3837c..3ee9bed 100644 --- a/webpack.mix.js +++ b/webpack.mix.js @@ -44,6 +44,7 @@ require('./modules/wm-service/webpack.mix'); require('./modules/wm-store/webpack.mix'); require('./modules/wm-admin/webpack.mix'); require('./modules/wm-notification/webpack.mix'); +require('./modules/wm-roll-call/webpack.mix'); //require('./modules/wm-finance/webpack.mix'); // require('./modules/wm-web-builder/webpack.mix'); //require('./modules/wm-warehouse/webpack.mix');