added auto-refresh on master status page

This commit is contained in:
jvictor
2017-08-31 16:09:27 +02:00
parent 197493b9d7
commit 6330f8a2fb
8 changed files with 33 additions and 0 deletions

View File

@@ -106,6 +106,13 @@ $factory->define(Setting::class, function ($faker) {
];
});
$factory->define(Setting::class, function ($faker) {
return [
'name' => 'app_refresh_rate',
'value' => '0',
];
});
$factory->define(Subscriber::class, function ($faker) {
return [
'email' => $faker->safeEmail,