Unverified Commit 607e3bd0 authored by Hong Minhee's avatar Hong Minhee
Browse files

Merge pull request #92 from moreal/impl-missing-activity-types

Implement missing activity types
parents 75036491 15da96c7
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -40,6 +40,21 @@ To be released.

 -  Added `ChatMessage` class to Activity Vocabulary API.  [[#85]]

 -  Added `Move` class to Activity Vocabulary API.  [[#65], [#92] by Lee Dogeon]

 -  Added `Read` class to Activity Vocabulary API.  [[#65], [#92] by Lee Dogeon]

 -  Added `Travel` class to Activity Vocabulary API.
    [[#65], [#92] by Lee Dogeon]

 -  Added `View` class to Activity Vocabulary API.  [[#65], [#92] by Lee Dogeon]

 -  Added `TentativeAccept` class to Activity Vocabulary API.
    [[#65], [#92] by Lee Dogeon]

 -  Added `TentativeReject` class to Activity Vocabulary API.
    [[#65], [#92] by Lee Dogeon]

 -  Improved multitenancy (virtual hosting) support.  [[#66]]

     -  Added `Context.hostname` property.
@@ -72,6 +87,7 @@ To be released.
[#66]: https://github.com/dahlia/fedify/issues/66
[#70]: https://github.com/dahlia/fedify/issues/70
[#85]: https://github.com/dahlia/fedify/issues/85
[#92]: https://github.com/dahlia/fedify/pull/92


Version 0.11.1
+6 −0
Original line number Diff line number Diff line
@@ -61,9 +61,15 @@ lists the activity types that Fedify provides:
 -  [`Leave`](https://jsr.io/@fedify/fedify/doc/vocab/~/Leave)
 -  [`Like`](https://jsr.io/@fedify/fedify/doc/vocab/~/Like)
 -  [`Listen`](https://jsr.io/@fedify/fedify/doc/vocab/~/Listen)
 -  [`Move`](https://jsr.io/@fedify/fedify/doc/vocab/~/Move)
 -  [`Offer`](https://jsr.io/@fedify/fedify/doc/vocab/~/Offer)
 -  [`Question`](https://jsr.io/@fedify/fedify/doc/vocab/~/Question)
 -  [`Read`](https://jsr.io/@fedify/fedify/doc/vocab/~/Read)
 -  [`Reject`](https://jsr.io/@fedify/fedify/doc/vocab/~/Reject)
 -  [`Remove`](https://jsr.io/@fedify/fedify/doc/vocab/~/Remove)
 -  [`TentativeAccept`](https://jsr.io/@fedify/fedify/doc/vocab/~/TentativeAccept)
 -  [`TentativeReject`](https://jsr.io/@fedify/fedify/doc/vocab/~/TentativeReject)
 -  [`Travel`](https://jsr.io/@fedify/fedify/doc/vocab/~/Travel)
 -  [`Undo`](https://jsr.io/@fedify/fedify/doc/vocab/~/Undo)
 -  [`Update`](https://jsr.io/@fedify/fedify/doc/vocab/~/Update)
 -  [`View`](https://jsr.io/@fedify/fedify/doc/vocab/~/View)
+1537 −75

File changed.

Preview size limit exceeded, changes collapsed.

+730 −10

File changed.

Preview size limit exceeded, changes collapsed.

vocab/move.yaml

0 → 100644
+13 −0
Original line number Diff line number Diff line
$schema: ../codegen/schema.yaml
name: Move
uri: "https://www.w3.org/ns/activitystreams#Move"
extends: "https://www.w3.org/ns/activitystreams#Activity"
entity: true
description: |
  Indicates that the `actor` has moved `object` from `origin` to `target`.
  If the `origin` or `target` are not specified,
  either can be determined by context.
defaultContext:
- "https://www.w3.org/ns/activitystreams"
- "https://w3id.org/security/data-integrity/v1"
properties: []
Loading