diff options
Diffstat (limited to 'internal/db/relationship.go')
-rw-r--r-- | internal/db/relationship.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/db/relationship.go b/internal/db/relationship.go index b3b45551b..5191701bb 100644 --- a/internal/db/relationship.go +++ b/internal/db/relationship.go @@ -184,4 +184,7 @@ type Relationship interface { // PutNote creates or updates a private note. PutNote(ctx context.Context, note *gtsmodel.AccountNote) error + + // PopulateNote populates the struct pointers on the given note. + PopulateNote(ctx context.Context, note *gtsmodel.AccountNote) error } |