fujaba / fulib.org

The fulib web app: fulibScenarios, fulibWorkflows, Docs, Projects and Assignments in one app.
https://fulib.org
MIT License
5 stars 1 forks source link

Remove this after the Winter Term 2023/24 study is over #378

Closed github-actions[bot] closed 8 months ago

github-actions[bot] commented 11 months ago

https://api.github.com/fujaba/fulib.org/blob/1c79a1c57dcc80abea71a0906c370118105c2b7b/frontend/src/app/assignment/modules/solution/tasks/tasks.component.ts#L64


      switchMap(({aid, sid}) => forkJoin([
        this.assignmentService.get(aid).pipe(tap(assignment => this.assignment = assignment)),
        this.evaluationService.findAll(aid, sid).pipe(map(evaluations => {
          if (!this.config.codeSearch) { // TODO Remove this after the Winter Term 2023/24 study is over
            evaluations = evaluations.filter(evaluation => evaluation.author !== 'Code Search');
          }
          this.evaluations = {};
          for (const evaluation of evaluations) {
            this.evaluations[evaluation.task] = evaluation;