-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ab45726
commit 211dbcf
Showing
17 changed files
with
94 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,32 @@ | ||
import { Timestamp } from 'firebase-admin/firestore'; | ||
|
||
export type EmailContent = { subject: string; body: string }; | ||
export interface EmailContent { | ||
subject: string; | ||
body: string; | ||
} | ||
|
||
export type Convention = { | ||
export interface Convention { | ||
edition: string; | ||
startdate: string; | ||
enddate: string; | ||
}; | ||
installationdate: string; | ||
} | ||
|
||
export type Hosting = { | ||
export interface Hosting { | ||
baseurl: string; | ||
}; | ||
} | ||
|
||
export type Association = { | ||
export interface Association { | ||
address: string; | ||
zipcode: string; | ||
city: string; | ||
event: string; | ||
tel: string; | ||
accountantemail: string; | ||
website: string; | ||
}; | ||
} | ||
|
||
export type Email = { | ||
export interface Email { | ||
mailgun: string; | ||
mailgun_email: '[email protected]'; | ||
enabled: string; | ||
|
@@ -31,23 +35,23 @@ export type Email = { | |
from: string; | ||
fromname: string; | ||
cc: string; | ||
}; | ||
} | ||
|
||
export type Mailjet = { | ||
export interface Mailjet { | ||
api: string; | ||
private: string; | ||
}; | ||
} | ||
|
||
export type SponsoringType = Record<string, number>; | ||
export type SponsorshipConfiguration = { | ||
export interface SponsorshipConfiguration { | ||
freeTickets: number; | ||
name: string; | ||
price: number; | ||
priceString: string; | ||
considerations: string[]; | ||
considerationsEn: string[]; | ||
hasBooth: boolean; | ||
}; | ||
} | ||
|
||
export type Configuration = SponsoringType & { | ||
next_value: string; | ||
|
@@ -63,7 +67,10 @@ export type Configuration = SponsoringType & { | |
template_folder: string; | ||
}; | ||
|
||
export type SponsoringOption = { label: string; price: number }; | ||
export interface SponsoringOption { | ||
label: string; | ||
price: number; | ||
} | ||
export type SponsoringOptions = SponsoringOption[]; | ||
|
||
export interface WorkflowStatus { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 0 additions & 1 deletion
1
public/src/app/private-dashboard/private-dashboard.component.html
This file was deleted.
Oops, something went wrong.
10 changes: 0 additions & 10 deletions
10
public/src/app/private-dashboard/private-dashboard.component.ts
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
export type Environement = { | ||
export interface Environement { | ||
firebase?: Record<string, string>; | ||
emailDomain: string; | ||
files: Record<string, string>; | ||
title: string; | ||
}; | ||
} |