From 4852c547a2beb7c25746f7b571897f70bd1c7127 Mon Sep 17 00:00:00 2001 From: saeid_01 Date: Tue, 30 Mar 2021 15:28:17 +0000 Subject: [PATCH 1/4] Update 'app/Console/Kernel.php' --- app/Console/Kernel.php | 1 + 1 file changed, 1 insertion(+) 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 } From 8a33c69b4457797e4832630d2ede4f71cfa7d13c Mon Sep 17 00:00:00 2001 From: saeid_01 Date: Thu, 8 Apr 2021 12:28:13 +0000 Subject: [PATCH 2/4] Update 'composer-prod.json' --- composer-prod.json | 5 +++++ 1 file changed, 5 insertions(+) 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" From 047422fcd51aedfe61dd780a9e298de0fc73e2cb Mon Sep 17 00:00:00 2001 From: saeid_01 Date: Thu, 8 Apr 2021 12:33:39 +0000 Subject: [PATCH 3/4] Update 'webpack.mix.js' --- webpack.mix.js | 1 + 1 file changed, 1 insertion(+) 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'); From 742a4cdd2343a403536600ce2ed1038e47e1b1c6 Mon Sep 17 00:00:00 2001 From: behmaram Date: Thu, 8 Apr 2021 18:55:19 +0430 Subject: [PATCH 4/4] fix --- database/seeds/DatabaseSeeder.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); }