Merge pull request 'dev' (#108) from dev into master

Reviewed-on: WillaEngine-Project/WillaEngine#108
pull/134/head
saeid_01 3 years ago
commit 25ee2bd9b7

@ -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
}

@ -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"

@ -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);
}

1
webpack.mix.js vendored

@ -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');

Loading…
Cancel
Save