Merge pull request #468 from shikorism/feature/per-host-resolve-control

リモートホストごとの同時アクセス制御とメタデータ取得ポリシー制御
This commit is contained in:
shibafu
2020-08-22 09:37:09 +09:00
committed by GitHub
9 changed files with 465 additions and 67 deletions

View File

@@ -0,0 +1,14 @@
<?php
/** @var \Illuminate\Database\Eloquent\Factory $factory */
use App\ContentProvider;
use Faker\Generator as Faker;
$factory->define(ContentProvider::class, function (Faker $faker) {
return [
'host' => 'example.com',
'robots' => null,
'robots_cached_at' => now(),
];
});