add new event and attendance table with automatic now timestamp
All checks were successful
Build Quasar SPA and Go Backend for memberApp / build-spa (push) Successful in 2m34s
Build Quasar SPA and Go Backend for memberApp / build-backend (amd64, .exe, windows) (push) Successful in 5m39s
Build Quasar SPA and Go Backend for memberApp / build-backend (amd64, , linux) (push) Successful in 5m46s
Build Quasar SPA and Go Backend for memberApp / build-backend (arm, 6, , linux) (push) Successful in 5m32s
Build Quasar SPA and Go Backend for memberApp / build-backend (arm64, , linux) (push) Successful in 5m35s
All checks were successful
Build Quasar SPA and Go Backend for memberApp / build-spa (push) Successful in 2m34s
Build Quasar SPA and Go Backend for memberApp / build-backend (amd64, .exe, windows) (push) Successful in 5m39s
Build Quasar SPA and Go Backend for memberApp / build-backend (amd64, , linux) (push) Successful in 5m46s
Build Quasar SPA and Go Backend for memberApp / build-backend (arm, 6, , linux) (push) Successful in 5m32s
Build Quasar SPA and Go Backend for memberApp / build-backend (arm64, , linux) (push) Successful in 5m35s
This commit is contained in:
7
src/vueLib/models/attendee.ts
Normal file
7
src/vueLib/models/attendee.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface Attendee {
|
||||
id: number;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
}
|
||||
|
||||
export type Attendees = Attendee[];
|
||||
9
src/vueLib/models/event.ts
Normal file
9
src/vueLib/models/event.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
import type { Attendees } from './attendee';
|
||||
|
||||
export interface Event {
|
||||
id: number;
|
||||
name: string;
|
||||
attendees: Attendees;
|
||||
}
|
||||
|
||||
export type Events = Event[];
|
||||
@@ -1,10 +1,12 @@
|
||||
import type { Permissions } from '../checkboxes/permissions';
|
||||
import type { Settings } from './settings';
|
||||
|
||||
export interface User {
|
||||
id: number;
|
||||
username: string;
|
||||
role: string;
|
||||
permissions?: Permissions;
|
||||
settings?: Settings;
|
||||
}
|
||||
|
||||
export interface UserState {
|
||||
|
||||
Reference in New Issue
Block a user