Skip to content

Commit 283dc39

Browse files
committed
vendor.landing_page not used anymore. retired
1 parent 2eb5eae commit 283dc39

File tree

5 files changed

+0
-6
lines changed

5 files changed

+0
-6
lines changed

packages/postgres-database/src/simcore_postgres_database/models/products.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ class Vendor(TypedDict, total=False):
4141
invitation_url: str # How to request a trial invitation? (if applies)
4242
invitation_form: bool # If True, it takes precendence over invitation_url and asks the FE to show the form (if defined)
4343

44-
has_landing_page: bool # Is Landing page enabled
45-
4644
release_notes_url_template: str # a template url where `{vtag}` will be replaced, eg: "http://example.com/{vtag}.md"
4745

4846

packages/pytest-simcore/src/pytest_simcore/helpers/faker_factories.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,6 @@ def random_product(
235235
license_url=fake.url(),
236236
invitation_url=fake.url(),
237237
invitation_form=fake.boolean(),
238-
has_landing_page=fake.boolean(),
239238
address=fake.address().replace("\n", ". "),
240239
),
241240
"registration_email_template": registration_email_template,

services/web/server/src/simcore_service_webserver/products/_model.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ class Config:
193193
"invitation_form": True,
194194
"name": "ACME",
195195
"copyright": "© ACME correcaminos",
196-
"has_landing_page": False,
197196
},
198197
"issues": [
199198
{

services/web/server/tests/unit/isolated/test_products_model.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ def test_product_to_static():
5050
"name": "ACME",
5151
"url": "https://acme.com",
5252
"license_url": "https://acme.com/license",
53-
"has_landing_page": False,
5453
"invitation_form": True,
5554
},
5655
"issues": [

services/web/server/tests/unit/with_dbs/03/products/test_products_db.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ async def product_repository(
8989
url="https://acme.com",
9090
license_url="http://docs.acme.app/#/license-terms",
9191
invitation_url="http://docs.acme.app/#/how-to-request-invitation",
92-
has_landing_page=False,
9392
),
9493
"issues": [
9594
IssueTracker(

0 commit comments

Comments
 (0)