Skip to content
This repository was archived by the owner on Mar 20, 2023. It is now read-only.

Commit 6bb6109

Browse files
authored
feat(api): create event type CourseUserWasRegistered (#327)
* feat(api): create event type CourseUserWasRegistered (#327) * file sufix change
1 parent 806500c commit 6bb6109

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
import type { UserId } from '@/shared/domain.types';
2+
3+
export type CourseUserWasRegistered = {
4+
type: 'CourseUserWasRegistered';
5+
data: { userId: UserId; courseUserId: string; courseId: string };
6+
};

0 commit comments

Comments
 (0)