We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e65b203 commit 8b9f056Copy full SHA for 8b9f056
2 files changed
model/acl/acl.go
@@ -70,6 +70,7 @@ const (
70
Tasks
71
Termvectors
72
Update
73
+ ReactiveSearch
74
)
75
76
// NewContext returns a new context with the given ACL.
model/category/category.go
@@ -238,6 +238,10 @@ func (c Category) ACLs() []acl.ACL {
238
acl.Ingest,
239
acl.Snapshot,
240
}
241
+ case ReactiveSearch:
242
+ return []acl.ACL{
243
+ acl.ReactiveSearch,
244
+ }
245
default:
246
return []acl.ACL{}
247
0 commit comments