Skip to content

Commit

Permalink
binds db
Browse files Browse the repository at this point in the history
  • Loading branch information
pcrespov committed Jan 29, 2025
1 parent 6a5a5e5 commit 40078fc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,12 @@ def random_product(
"short_name": suffix[:4],
"host_regex": r"[a-zA-Z0-9]+\.com",
"support_email": f"support@{suffix}.io",
"product_owners_email": fake.random_element(elements=[fake.email(), None]),
"twilio_messaging_sid": fake.random_element(elements=(None, fake.uuid4()[:34])),
"product_owners_email": fake.random_element(
elements=[f"product-onwers@{suffix}.io", None]
),
"twilio_messaging_sid": fake.random_element(
elements=(None, f"{fake.uuid4()}"[:34])
),
"vendor": Vendor(
name=fake.company(),
copyright=fake.company_suffix(),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
products.c.short_name,
products.c.host_regex,
products.c.support_email,
products.c.product_owners_email,
products.c.twilio_messaging_sid,
products.c.vendor,
products.c.issues,
Expand Down

0 comments on commit 40078fc

Please sign in to comment.