Skip to content

Commit

Permalink
Merge pull request #2087 from CarnegieLearningWeb/code-cleanup/remove…
Browse files Browse the repository at this point in the history
…-experimentusercontroller-issue-2084

Remove ExperimentUserController as its not used in the frontend
  • Loading branch information
ppratikcr7 authored Nov 4, 2024
2 parents e885041 + 69f4a55 commit 733dc51
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 273 deletions.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -233,12 +233,6 @@ export class ExperimentUserService {
return this.userRepository.save(newDocument);
}

public update(id: string, user: Partial<ExperimentUser>, logger: UpgradeLogger): Promise<ExperimentUser> {
logger.info({ message: `Update a user ${user.toString()}` });
user.id = id;
return this.userRepository.save(user);
}

// TODO should we check for workingGroup as a subset over here?
public async updateGroupMembership(
userId: string,
Expand Down

This file was deleted.

0 comments on commit 733dc51

Please sign in to comment.