fix(backend): Formatting + .env.development.example

npm run format uitgevoerd, .env.development.example toegevoegd.
This commit is contained in:
Gerald Schmittinger 2025-02-26 22:03:53 +01:00
parent 4e883a1a18
commit 48c8ce7c57
36 changed files with 499 additions and 331 deletions

View file

@ -1,31 +1,31 @@
import {Student} from "../users/student.entity";
import {Group} from "./group.entity";
import {Entity, Enum, ManyToOne, PrimaryKey, Property} from "@mikro-orm/core";
import {Language} from "../content/language";
import { Student } from '../users/student.entity';
import { Group } from './group.entity';
import { Entity, Enum, ManyToOne, PrimaryKey, Property } from '@mikro-orm/core';
import { Language } from '../content/language';
@Entity()
export class Submission {
@PrimaryKey({type: "string"})
@PrimaryKey({ type: 'string' })
learningObjectHruid!: string;
@Enum({items: () => Language, primary: true})
@Enum({ items: () => Language, primary: true })
learningObjectLanguage!: Language;
@PrimaryKey({type: "string"})
learningObjectVersion: string = "1";
@PrimaryKey({ type: 'string' })
learningObjectVersion: string = '1';
@PrimaryKey({type: "integer"})
@PrimaryKey({ type: 'integer' })
submissionNumber!: number;
@ManyToOne({entity: () => Student})
@ManyToOne({ entity: () => Student })
submitter!: Student;
@Property({type: "datetime"})
@Property({ type: 'datetime' })
submissionTime!: Date;
@ManyToOne({entity: () => Group, nullable: true})
@ManyToOne({ entity: () => Group, nullable: true })
onBehalfOf?: Group;
@Property({type: "json"})
@Property({ type: 'json' })
content!: string;
}