server-ts: Port revisions service

This commit is contained in:
Elian Doran
2024-02-17 19:44:46 +02:00
parent a58abffe58
commit 246a90d73c
8 changed files with 16 additions and 17 deletions

View File

@@ -33,10 +33,11 @@ abstract class AbstractBeccaEntity<T extends AbstractBeccaEntity<T>> {
protected utcDateModified?: string;
protected dateCreated?: string;
protected dateModified?: string;
protected isProtected?: boolean;
protected isSynced?: boolean;
protected blobId?: string;
isProtected?: boolean;
protected beforeSaving() {
const constructorData = (this.constructor as unknown as ConstructorData<T>);