Skip to content
Snippets Groups Projects
Select Git revision
  • e7dc5bba05810629e48c418161f6470caf188a04
  • main default protected
  • jw_sonar
  • v6.0.0 protected
  • interactive-mode-preference
  • bedran_exercise-list
  • add_route_user
  • Jw_sonar_backup
  • exercise_list_filter
  • assignment_filter
  • add_route_assignments
  • move-to-esm-only
  • 6.0.0-dev
  • Pre-alpha
  • 5.0.0
  • Latest
  • 4.2.0
  • 4.1.1
  • 4.1.0
  • 4.0.1
  • 4.0.0
  • 3.5.0
  • 3.4.2
  • 3.4.1
  • 3.3.0
  • 3.2.3
  • 3.2.2
  • 3.2.0
  • 3.1.2
  • 3.1.1
  • 3.1.0
  • 3.0.1
32 results

AssignmentRunCommand.ts

Blame
  • Exercise.ts 611 B
    import User        from './User.js';
    import Assignment  from './Assignment.js';
    import * as Gitlab from '@gitbeaker/rest';
    
    
    interface Exercise {
        id: string;
        assignmentName: string;
        name: string;
        gitlabId: number;
        gitlabLink: string;
        gitlabCreationInfo: Gitlab.ProjectSchema;
        gitlabLastInfo: Gitlab.ProjectSchema;
        gitlabLastInfoDate: string;
    
        members: Array<User> | undefined;
        assignment: Assignment | undefined;
    
        isCorrection: boolean;
        correctionCommit: Gitlab.CommitSchema | undefined;
        correctionDescription: string | undefined;
    }
    
    
    export default Exercise;