Add various location events to seeder (#2259)

Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
pull/2260/head^2
Omar López 2022-03-23 19:13:04 -07:00 committed by GitHub
parent e1964553c4
commit 87dcdec044
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 1 deletions

View File

@ -216,7 +216,6 @@ async function main() {
username: "pro",
plan: "PRO",
},
eventTypes: [
{
title: "30min",
@ -249,6 +248,30 @@ async function main() {
length: 60,
price: 50,
},
{
title: "In person meeting",
slug: "in-person",
length: 60,
locations: [{ type: "inPerson", address: "London" }],
},
{
title: "Zoom Event",
slug: "zoom",
length: 60,
locations: [{ type: "integrations:zoom" }],
},
{
title: "Daily Event",
slug: "daily",
length: 60,
locations: [{ type: "integrations:daily" }],
},
{
title: "Google Meet",
slug: "google-meet",
length: 60,
locations: [{ type: "integrations:google:meet" }],
},
],
});