becca conversion WIP

This commit is contained in:
zadam
2021-05-02 11:23:58 +02:00
parent d13c8771ca
commit 1af10d48a2
29 changed files with 91 additions and 92 deletions

View File

@@ -658,7 +658,7 @@ class Note extends Entity {
getRelationTarget(name) {
const relation = this.getRelation(name);
return relation ? this.repository.getNote(relation.value) : null;
return relation ? this.becca.getNote(relation.value) : null;
}
/**
@@ -668,7 +668,7 @@ class Note extends Entity {
getOwnedRelationTarget(name) {
const relation = this.getOwnedRelation(name);
return relation ? this.repository.getNote(relation.value) : null;
return relation ? this.becca.getNote(relation.value) : null;
}
/**