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 #379

Closed github-actions[bot] closed 8 months ago

github-actions[bot] commented 11 months ago

Code Search evaluations are not shown to the user

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


      const task = evaluation.task;
      if (event === 'deleted') {
        delete this.evaluations[task];
      }
      else if (!this.config.codeSearch && evaluation.author === 'Code Search') { // TODO Remove this after the Winter Term 2023/24 study is over
        // Code Search evaluations are not shown to the user
        return;
      } else {
        this.evaluations[task] = evaluation;
      }