Skip to content

Commit

Permalink
feat(settings) site settings fields
Browse files Browse the repository at this point in the history
  • Loading branch information
ceddybi committed Apr 10, 2024
1 parent 6fabbb4 commit e7f223c
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/settings/settings.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ export class SiteSettings {
@Field(() => Number, { nullable: true })
adCount?: number = 0;

@Field(() => String, { nullable: true })
logo?: string = "";

@Field(() => String, { nullable: true })
name?: string = "";

Expand Down Expand Up @@ -131,6 +134,7 @@ export const siteSettingsClientSelectors = [
"vendorCount",
"userCount",
"adCount",
"logo",
"name",
"slogan",
"description",
Expand Down

0 comments on commit e7f223c

Please sign in to comment.