We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed49c71 commit 8e03037Copy full SHA for 8e03037
1 file changed
src/cosmos-db/documents/ticketing/event-profile.doc.ts
@@ -34,6 +34,7 @@ import {
34
RegistrationDetailsDto,
35
} from './event-profile-create.dto';
36
import { EventUserRoleDoc } from './event-user-role.doc';
37
+import { OwnerDto } from '../../../common/owner.dto';
38
39
export class PremiumType {
40
@ApiProperty({
@@ -349,6 +350,14 @@ export class EventProfile extends EventProfileDoc {
349
350
type: () => EventGuestProfile,
351
})
352
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[];
361
}
362
363
export class EventProfileQuery extends createCosmosPaginatedResponse(
0 commit comments