Some checks failed
Test, Build, and Deploy / test-build-deploy (push) Failing after 26s
10 lines
353 B
Plaintext
10 lines
353 B
Plaintext
;; next/genesis/audience/public.sx
|
|
;;
|
|
;; Public audience: every actor is a member. Maps to the AP
|
|
;; magic id `https://www.w3.org/ns/activitystreams#Public`.
|
|
|
|
(DefineAudience
|
|
:name "Public"
|
|
:doc "Public audience predicate. Always returns true — every\n actor on the network is considered a member."
|
|
:member-of (fn (actor audience) true))
|