clean(none): clean slate , removed useless code lines
This commit is contained in:
parent
6b17b2c639
commit
e1b63bd61a
|
|
@ -184,11 +184,6 @@ model TimesheetsArchive {
|
||||||
@@map("timesheets_archive")
|
@@map("timesheets_archive")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
model SchedulePresets {
|
model SchedulePresets {
|
||||||
id Int @id @default(autoincrement())
|
id Int @id @default(autoincrement())
|
||||||
employee Employees @relation("SchedulePreset", fields: [employee_id], references: [id])
|
employee Employees @relation("SchedulePreset", fields: [employee_id], references: [id])
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,9 @@
|
||||||
|
export class Session {
|
||||||
|
user_id: number;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
export class Timesheets {
|
export class Timesheets {
|
||||||
timesheet_id: number;
|
timesheet_id: number;
|
||||||
days: TimesheetDay[];
|
days: TimesheetDay[];
|
||||||
|
|
@ -30,9 +36,9 @@ export class TotalExpenses {
|
||||||
}
|
}
|
||||||
|
|
||||||
export class Shift {
|
export class Shift {
|
||||||
date: string;
|
date: Date;
|
||||||
start: string;
|
start_time: Date;
|
||||||
end: string;
|
end_time: Date;
|
||||||
type: string;
|
type: string;
|
||||||
is_remote: boolean;
|
is_remote: boolean;
|
||||||
is_approved: boolean;
|
is_approved: boolean;
|
||||||
1
src/modules/shared/constants/utils.constant.ts
Normal file
1
src/modules/shared/constants/utils.constant.ts
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
export const COMMENT_MAX_LENGTH = 280;
|
||||||
Loading…
Reference in New Issue
Block a user