diff --git a/backend/src/graphql/model/CreatePendingCreation.ts b/backend/src/graphql/model/CreatePendingCreation.ts deleted file mode 100644 index e69de29bb..000000000 diff --git a/backend/src/graphql/model/GdtEntry.ts b/backend/src/graphql/model/GdtEntry.ts index 2f4b31b00..43529fb06 100644 --- a/backend/src/graphql/model/GdtEntry.ts +++ b/backend/src/graphql/model/GdtEntry.ts @@ -1,7 +1,7 @@ /* eslint-disable @typescript-eslint/no-explicit-any */ /* eslint-disable @typescript-eslint/explicit-module-boundary-types */ import { ObjectType, Field } from 'type-graphql' -import { GdtEntryType } from '../enum/GdtEntryType' +import { GdtEntryType } from '@enum/GdtEntryType' @ObjectType() export class GdtEntry { diff --git a/backend/src/graphql/model/GdtSumPerEmail.ts b/backend/src/graphql/model/GdtSumPerEmail.ts deleted file mode 100644 index c90c7293b..000000000 --- a/backend/src/graphql/model/GdtSumPerEmail.ts +++ /dev/null @@ -1,19 +0,0 @@ -/* eslint-disable @typescript-eslint/no-explicit-any */ -/* eslint-disable @typescript-eslint/explicit-module-boundary-types */ -/* -import { ObjectType, Field } from 'type-graphql' - -@ObjectType() -export class GdtSumPerEmail { - constructor(email: string, summe: number) { - this.email = email - this.summe = summe - } - - @Field(() => String) - email: string - - @Field(() => Number) - summe: number -} -*/ diff --git a/backend/src/graphql/model/Transaction.ts b/backend/src/graphql/model/Transaction.ts index cf2e899b2..29a8a4bbd 100644 --- a/backend/src/graphql/model/Transaction.ts +++ b/backend/src/graphql/model/Transaction.ts @@ -2,7 +2,7 @@ import { ObjectType, Field } from 'type-graphql' import { Decay } from './Decay' import { Transaction as dbTransaction } from '@entity/Transaction' import Decimal from 'decimal.js-light' -import { TransactionTypeId } from '../enum/TransactionTypeId' +import { TransactionTypeId } from '@enum/TransactionTypeId' import { User } from './User' @ObjectType() diff --git a/backend/src/graphql/model/TransactionList.ts b/backend/src/graphql/model/TransactionList.ts index 364e98f09..c34a594f5 100644 --- a/backend/src/graphql/model/TransactionList.ts +++ b/backend/src/graphql/model/TransactionList.ts @@ -1,5 +1,5 @@ import { ObjectType, Field } from 'type-graphql' -import CONFIG from '../../config' +import CONFIG from '@/config' import Decimal from 'decimal.js-light' import { Transaction } from './Transaction'