Added Events

This commit is contained in:
2026-01-30 14:35:01 +01:00
parent e2335fdcf7
commit 76857b8611
6 changed files with 31 additions and 13 deletions

View File

@@ -12,9 +12,9 @@ export class EventsService {
){}
async getEvents(): Promise<MyEvent[]> {
async getEvents(): Promise<EventEntity[]> {
return (await this.eventRepository.find()) as MyEvent[];
return (await this.eventRepository.find());