server-ts: FIXME -> TODO

This commit is contained in:
Elian Doran
2024-02-18 20:41:30 +02:00
parent 11c7533984
commit cbc01e1a8d
4 changed files with 6 additions and 6 deletions

View File

@@ -104,7 +104,7 @@ abstract class AbstractBeccaEntity<T extends AbstractBeccaEntity<T>> {
/**
* Saves entity - executes SQL, but doesn't commit the transaction on its own
*/
// FIXME: opts not used but called a few times, maybe should be used by derived classes or passed to beforeSaving.
// TODO: opts not used but called a few times, maybe should be used by derived classes or passed to beforeSaving.
save(opts?: {}): this {
const constructorData = (this.constructor as unknown as ConstructorData<T>);
const entityName = constructorData.entityName;