File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
server/src/features/assignment/utils Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 77} from "server/utils/notificationQueue" ;
88import { UserAssignmentResult } from "shared/types/models/result" ;
99import {
10- delDirectSignup ,
11- delAssignmentDirectSignupsByStartTime ,
12- findDirectSignupsByStartTime ,
10+ // delDirectSignup,
11+ // delAssignmentDirectSignupsByStartTime,
12+ // findDirectSignupsByStartTime,
1313 saveDirectSignups ,
1414} from "server/features/direct-signup/directSignupRepository" ;
1515import {
@@ -65,6 +65,7 @@ export const saveUserSignupResults = async ({
6565 }
6666 // Remove previous lottery result for the same start time
6767 // This does not remove non-lottery signups or previous signups from moved program items
68+ /*
6869 const delAssignmentSignupsByStartTimeResult =
6970 await delAssignmentDirectSignupsByStartTime(assignmentTime, programItems);
7071 if (isErrorResult(delAssignmentSignupsByStartTimeResult)) {
@@ -110,6 +111,7 @@ export const saveUserSignupResults = async ({
110111 if (someDeleteFailed) {
111112 return makeErrorResult(MongoDbError.UNKNOWN_ERROR);
112113 }
114+ */
113115
114116 // Save new assignment results
115117 const newSignups : SignupRepositoryAddSignup [ ] = results . map ( ( result ) => {
You can’t perform that action at this time.
0 commit comments