Skip to content

Commit

Permalink
fix: remove attempt number field
Browse files Browse the repository at this point in the history
  • Loading branch information
satikaj committed Jun 5, 2024
1 parent 97e1ea1 commit f0ff40b
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion src/app/api/models/scorm-player-context.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ export class ScormPlayerContext {
taskDefId: number;
user: User;

attemptNumber: number;
attemptId: number;
learnerName: string;
learnerId: number;
Expand Down
1 change: 0 additions & 1 deletion src/app/api/models/test-attempt.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {Task} from './doubtfire-model';

export class TestAttempt extends Entity {
id: number;
attemptNumber: number;
terminated: boolean;
completionStatus: boolean;
successStatus: boolean;
Expand Down
1 change: 0 additions & 1 deletion src/app/api/services/test-attempt.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ export class TestAttemptService extends CachedEntityService<TestAttempt> {

this.mapping.addKeys(
'id',
'attemptNumber',
'terminated',
'completionStatus',
'successStatus',
Expand Down

0 comments on commit f0ff40b

Please sign in to comment.