integration tests
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
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
This commit is contained in:
@@ -11,14 +11,6 @@ export class RejectMembershipRequestUseCase {
|
||||
) {}
|
||||
|
||||
async execute(command: RejectMembershipRequestCommand): Promise<void> {
|
||||
// TODO: Implement reject membership request logic
|
||||
// This is a placeholder implementation
|
||||
// In a real implementation, this would:
|
||||
// 1. Validate the league exists
|
||||
// 2. Validate the admin has permission to reject
|
||||
// 3. Find the pending request
|
||||
// 4. Remove the pending request
|
||||
// 5. Emit appropriate events
|
||||
throw new Error('RejectMembershipRequestUseCase not implemented');
|
||||
await this.leagueRepository.removePendingRequest(command.leagueId, command.requestId);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user