Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Dufresne committed Mar 22, 2019
1 parent fa75b32 commit 84a6441
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion src/modules/database/events/events.controller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export class EventsController {

@Get()
public async getAll(): Promise<Events[]> {
return await this. eventsService.getEventList();
return await this.eventsService.getEventList();
}

@Get("guide")
Expand Down
1 change: 0 additions & 1 deletion src/modules/database/events/events.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,6 @@ export class EventsService extends BaseService<Events, CreateEventDto> {
endDate: true,
details: true,
coverUrl: true,
attendees: true,
teamEditLocked: true,
teamEditLockDate: true,
flashoutBeginDate: true,
Expand Down

0 comments on commit 84a6441

Please sign in to comment.