Unverified Commit 8f8058f1 authored by Hong Minhee's avatar Hong Minhee
Browse files

Add new section for sending activities

[ci skip]
parent 1e160866
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -73,6 +73,7 @@ export default defineConfig({
          { text: "Vocabulary", link: "/manual/vocab.md" },
          { text: "Actor dispatcher", link: "/manual/actor.md" },
          { text: "Inbox listeners", link: "/manual/inbox.md" },
          { text: "Sending activities", link: "/manual/send.md" },
          { text: "Collections", link: "/manual/collections.md" },
          { text: "NodeInfo", link: "/manual/nodeinfo.md" },
          { text: "Pragmatics", link: "/manual/pragmatics.md" },
(52.9 KiB)

File changed.

No diff preview for this file type.

+1 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ framework.
 -  [Vocabulary](./manual/vocab.md)
 -  [Actor dispatcher](./manual/actor.md)
 -  [Inbox listeners](./manual/inbox.md)
 -  [Send activities](./manual/send.md)
 -  [Collections](./manual/collections.md)
 -  [NodeInfo](./manual/nodeinfo.md)
 -  [Pragmatics](./manual/pragmatics.md)
+2 −2
Original line number Diff line number Diff line
@@ -3,8 +3,8 @@ description: >-
  Fedify provides a generic way to construct and handle collections.
  This section explains how to work with collections in Fedify.
prev:
  text: Inbox listeners
  link: ./inbox.md
  text: Sending activities
  link: ./send.md
next:
  text: NodeInfo
  link: ./nodeinfo.md
+3 −0
Original line number Diff line number Diff line
@@ -116,6 +116,9 @@ federation
  });
~~~~

For more information about this topic, see the [*Sending activities*
section](./send.md).

> [!NOTE]
> The `~Context.sendActivity()` method works only if the [key pair dispatcher]
> is registered to the `Federation` object.  If the key pair dispatcher is not
Loading