Feat add actors to meilisearch (#1048)
* initial commit * update api docs * adds search token versioning * make id filterable * isLocal -> is_local * add iri to actor index * update gitignore * Merge remote-tracking branch 'origin/main' into feat-add-actors-to-meilisearch * fix sharing for newly discovered actors * fix ActorSearchResult type --------- Co-authored-by: Christian Beutel <>
This commit is contained in:
@@ -61,7 +61,7 @@ func SendNotification(app core.App, notification Notification, recipient *core.R
|
||||
if notification.Author == recipient.Id {
|
||||
return nil
|
||||
}
|
||||
if !recipient.GetBool("isLocal") {
|
||||
if !recipient.GetBool("is_local") {
|
||||
return nil
|
||||
}
|
||||
permissions, err := getNotificationPermissions(app, recipient.GetString("user"), notification.Type)
|
||||
|
||||
Reference in New Issue
Block a user