Some checks failed
CI / lint-typecheck (pull_request) Failing after 4m50s
CI / tests (pull_request) Has been skipped
CI / contract-tests (pull_request) Has been skipped
CI / e2e-tests (pull_request) Has been skipped
CI / comment-pr (pull_request) Has been skipped
CI / commit-types (pull_request) Has been skipped
25 lines
935 B
TypeScript
25 lines
935 B
TypeScript
import { LeagueRepository } from '../ports/LeagueRepository';
|
|
import { DriverRepository } from '../ports/DriverRepository';
|
|
import { EventPublisher } from '../ports/EventPublisher';
|
|
import { DemoteAdminCommand } from '../ports/DemoteAdminCommand';
|
|
|
|
export class DemoteAdminUseCase {
|
|
constructor(
|
|
private readonly leagueRepository: LeagueRepository,
|
|
private readonly driverRepository: DriverRepository,
|
|
private readonly eventPublisher: EventPublisher,
|
|
) {}
|
|
|
|
async execute(command: DemoteAdminCommand): Promise<void> {
|
|
// TODO: Implement demote admin logic
|
|
// This is a placeholder implementation
|
|
// In a real implementation, this would:
|
|
// 1. Validate the league exists
|
|
// 2. Validate the admin has permission to demote
|
|
// 3. Find the admin to demote
|
|
// 4. Update the admin's role to member
|
|
// 5. Emit appropriate events
|
|
throw new Error('DemoteAdminUseCase not implemented');
|
|
}
|
|
}
|