refactor: 🔥 Remove id property from transient entities

This commit is contained in:
Jesse Wierzbinski 2025-05-13 15:04:30 +02:00
parent e56b1c407d
commit e138e9e7c3
No known key found for this signature in database
10 changed files with 8 additions and 20 deletions

View file

@ -29,7 +29,6 @@ These two examples are equivalent if the instance is `example.com`:
```jsonc
{
"type": "Follow",
"id": "3e7e4750-afd4-4d99-a256-02f0710a0520",
"author": "6e0204a2-746c-4972-8602-c4f37fc63bbe", // [!code focus]
"created_at": "2021-01-01T00:00:00.000Z",
"followee": "test.org:02e1e3b2-cb1f-4e4a-b82e-98866bee5de7"
@ -39,7 +38,6 @@ These two examples are equivalent if the instance is `example.com`:
```jsonc
{
"type": "Follow",
"id": "3e7e4750-afd4-4d99-a256-02f0710a0520",
"author": "example.com:6e0204a2-746c-4972-8602-c4f37fc63bbe", // [!code focus]
"created_at": "2021-01-01T00:00:00.000Z",
"followee": "test.org:02e1e3b2-cb1f-4e4a-b82e-98866bee5de7"