From 2c176b27fc5904762aa7d5edd1fc9f2b6e194543 Mon Sep 17 00:00:00 2001 From: Amin Latifi Date: Thu, 6 Jun 2024 12:46:06 +0330 Subject: [PATCH] Updated a comment --- schema.graphql | 2 +- src/model/generated/project.model.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/schema.graphql b/schema.graphql index 38f5cc0..63e17fb 100644 --- a/schema.graphql +++ b/schema.graphql @@ -57,7 +57,7 @@ type Project @entity { totalFlags: Int! "Total attests" totalAttests: Int! - "Slug of the project" + "Url of the project" url: String "Image of the project" image: String diff --git a/src/model/generated/project.model.ts b/src/model/generated/project.model.ts index 0abce05..74e898b 100644 --- a/src/model/generated/project.model.ts +++ b/src/model/generated/project.model.ts @@ -59,7 +59,7 @@ export class Project { totalAttests!: number /** - * Slug of the project + * Url of the project */ @Column_("text", {nullable: true}) url!: string | undefined | null