Skip to content

Commit 8e03037

Browse files
committed
co-hosts
1 parent ed49c71 commit 8e03037

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

src/cosmos-db/documents/ticketing/event-profile.doc.ts

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ import {
3434
RegistrationDetailsDto,
3535
} from './event-profile-create.dto';
3636
import { EventUserRoleDoc } from './event-user-role.doc';
37+
import { OwnerDto } from '../../../common/owner.dto';
3738

3839
export class PremiumType {
3940
@ApiProperty({
@@ -349,6 +350,14 @@ export class EventProfile extends EventProfileDoc {
349350
type: () => EventGuestProfile,
350351
})
351352
guestProfile?: EventGuestProfile;
353+
354+
@ApiProperty({
355+
description: 'The co-hosts of the event.',
356+
required: false,
357+
isArray: true,
358+
type: () => OwnerDto,
359+
})
360+
coHosts?: OwnerDto[];
352361
}
353362

354363
export class EventProfileQuery extends createCosmosPaginatedResponse(

0 commit comments

Comments
 (0)