Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Develop #6

Merged
merged 8 commits into from
Sep 1, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
🔖 1.4.2
  • Loading branch information
HubM committed Sep 1, 2024
commit bd1cd142ba6b541f5f7c869809b2655f4e933297
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.fixAll.eslint": "always"
"source.fixAll": "never",
"source.fixAll.eslint": "explicit"
},
"typescript.tsdk": "node_modules/typescript/lib",
}
10 changes: 8 additions & 2 deletions types/Category.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
import type { HEX } from "./Color";
import type { Talk } from "./Talk";

type CategoryName = "Design & UX" | "Cloud & DevSecOps" | "Backend" | "Frontend" |
"Big Data & I.A." | "Méthodo & Architecture" | "Hors-piste";
type CategoryName =
| "Design & UX"
| "Cloud & DevSecOps"
| "Backend"
| "Frontend"
| "Big Data & I.A."
| "Méthodo & Architecture"
| "Hors-piste";

export type Category = {
id: number;
9 changes: 8 additions & 1 deletion types/Format.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,16 @@
import type { Talk } from "./Talk";

type FormatName =
| "Quickie"
| "Conférence"
| "Hands on lab"
| "Keynote de fermeture"
| "Keynote d'ouverture";

export type Format = {
id: number;
conferenceHallId?: string;
name?: string;
name: FormatName;
description?: string;
duration: string;
talks?: Talk[];
Loading