website refactor

This commit is contained in:
2026-01-16 16:46:57 +01:00
parent 37b1aa626c
commit 2f53727702
445 changed files with 1160 additions and 1150 deletions

View File

@@ -22,8 +22,8 @@ export type UpdateTeamResult = {
export type UpdateTeamErrorCode = 'TEAM_NOT_FOUND' | 'PERMISSION_DENIED' | 'REPOSITORY_ERROR';
export class UpdateTeamUseCase {
constructor(private readonly teamRepository: ITeamRepository,
private readonly membershipRepository: ITeamMembershipRepository) {}
constructor(private readonly teamRepository: TeamRepository,
private readonly membershipRepository: TeamMembershipRepository) {}
async execute(
command: UpdateTeamInput,