Skip to content
Snippets Groups Projects
Commit 4efff1c5 authored by michael.minelli's avatar michael.minelli
Browse files

Exercise => Add correction fields

parent 9879e3e0
No related branches found
No related tags found
No related merge requests found
import GitlabRepository from '../../shared/types/Gitlab/GitlabRepository'; import GitlabRepository from '../../shared/types/Gitlab/GitlabRepository';
import { CommitSchema } from '@gitbeaker/rest';
import User from './User';
import Assignment from './Assignment';
interface Exercise { interface Exercise {
...@@ -10,6 +13,12 @@ interface Exercise { ...@@ -10,6 +13,12 @@ interface Exercise {
gitlabCreationInfo: GitlabRepository; gitlabCreationInfo: GitlabRepository;
gitlabLastInfo: GitlabRepository; gitlabLastInfo: GitlabRepository;
gitlabLastInfoDate: string; gitlabLastInfoDate: string;
members: Array<User> | undefined;
assignment: Assignment | undefined;
isCorrection: boolean;
correctionCommit: CommitSchema | undefined;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment