work on jwt auth
Some checks failed
CI / Lint (push) Failing after 14m49s
CI / Test (push) Failing after 7m55s

This commit is contained in:
2025-01-08 16:49:27 +01:00
parent cf15e3beb3
commit feef600052
14 changed files with 103 additions and 18 deletions

9
app/models/edition.js Normal file
View File

@@ -0,0 +1,9 @@
import Model, { attr } from "@ember-data/model";
export default class EditionModel extends Model {
@attr name;
@attr theme;
@attr status;
@attr startDate;
@attr endDate;
}

7
app/models/person.js Normal file
View File

@@ -0,0 +1,7 @@
import Model, { attr } from "@ember-data/model";
export default class PersonModel extends Model {
@attr("string") firstname;
@attr("string") lastname;
@attr("date") birthday;
}

6
app/models/venue.js Normal file
View File

@@ -0,0 +1,6 @@
import Model, { attr } from "@ember-data/model";
export default class VenueModel extends Model {
@attr name;
@attr location;
}