teableio/teable

View on GitHub
apps/nestjs-backend/src/event-emitter/events/space/collaborator.event.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Events } from '../event.enum';

export class CollaboratorCreateEvent {
  public readonly name = Events.COLLABORATOR_CREATE;

  constructor(public readonly spaceId: string) {}
}

export class CollaboratorDeleteEvent {
  public readonly name = Events.COLLABORATOR_DELETE;

  constructor(public readonly spaceId: string) {}
}