From ce55dce011bb44c65b1ed1e3a60123cb5edb7b38 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 29 Dec 2020 19:32:20 +0100 Subject: [PATCH] Removed abstract flag from class ref #56 --- src/models/entities/StatsClient.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/models/entities/StatsClient.ts b/src/models/entities/StatsClient.ts index 2c6bf11..cbc9e9e 100644 --- a/src/models/entities/StatsClient.ts +++ b/src/models/entities/StatsClient.ts @@ -5,7 +5,7 @@ import { Column, Entity, PrimaryGeneratedColumn } from "typeorm"; * StatsClients can be used to access the protected parts of the stats api (top runners, donators and so on). */ @Entity() -export abstract class StatsClient { +export class StatsClient { /** * Autogenerated unique id (primary key). */