Dashboard

This commit is contained in:
Bastian Wagner
2025-01-02 15:55:56 +01:00
parent efbfc2eb01
commit 5c6516095b
24 changed files with 490 additions and 36 deletions

View File

@@ -1,6 +1,7 @@
import { Module } from '@nestjs/common';
import { TypeOrmModule } from '@nestjs/typeorm';
import {
Activity,
Customer,
Cylinder,
Key,
@@ -12,6 +13,7 @@ import {
} from 'src/model/entitites';
import { KeySystem } from 'src/model/entitites/system.entity';
import {
ActivityRepository,
CustomerRepository,
CylinderRepository,
KeyActivityRepository,
@@ -33,6 +35,7 @@ const ENTITIES = [
KeyActivity,
Customer,
KeyHandout,
Activity,
];
const REPOSITORIES = [
UserRepository,
@@ -44,6 +47,7 @@ const REPOSITORIES = [
KeyActivityRepository,
CustomerRepository,
KeyHandoutRepository,
ActivityRepository,
];
@Module({