fix spelling of flavor

This commit is contained in:
Michael Jerger 2023-10-16 19:44:40 +02:00
parent 0a97657443
commit 98e1ffe97f
2 changed files with 5 additions and 5 deletions

View file

@ -18,13 +18,13 @@
(s/def ::Star (s/def ::Star
(s/merge (s/merge
::as/Activity ::as/Activity
(sh/map-spec (s/keys :opt [::flavour])))) (sh/map-spec (s/keys :opt [::flavor]))))
;https://forgefed.org/ns#Unstar ;https://forgefed.org/ns#Unstar
(s/def ::Unstar (s/def ::Unstar
(s/merge (s/merge
::as/Activity ::as/Activity
(sh/map-spec (s/keys :opt [::flavour])))) (sh/map-spec (s/keys :opt [::flavor]))))
(s/def ::flavour (s/def ::flavor
(sh/seq-spec ::xsd/anyURI)) (sh/seq-spec ::xsd/anyURI))

View file

@ -26,7 +26,7 @@
(is (s/valid? ::sut/Star (is (s/valid? ::sut/Star
{::as/id "https://repo.prod.meissa.de/api/activitypub/user-id/1/outbox/12345", {::as/id "https://repo.prod.meissa.de/api/activitypub/user-id/1/outbox/12345",
::as/type "Star", ::as/type "Star",
::sut/flavour "forgejo", ::sut/flavor "forgejo",
::as/actor "https://repo.prod.meissa.de/api/activitypub/user-id/1", ::as/actor "https://repo.prod.meissa.de/api/activitypub/user-id/1",
::as/object "https://codeberg.org/api/repos/forgejo/forgejo"}))))) ::as/object "https://codeberg.org/api/repos/forgejo/forgejo"})))))
@ -36,6 +36,6 @@
(is (s/valid? ::sut/Unstar (is (s/valid? ::sut/Unstar
{::as/id "https://repo.prod.meissa.de/api/activitypub/user-id/1/outbox/12345", {::as/id "https://repo.prod.meissa.de/api/activitypub/user-id/1/outbox/12345",
::as/type "Unstar", ::as/type "Unstar",
::sut/flavour "forgejo", ::sut/flavor "forgejo",
::as/actor "https://repo.prod.meissa.de/api/activitypub/user-id/1", ::as/actor "https://repo.prod.meissa.de/api/activitypub/user-id/1",
::as/object "https://codeberg.org/api/repos/forgejo/forgejo"}))))) ::as/object "https://codeberg.org/api/repos/forgejo/forgejo"})))))