From 591adb7359ce9f9e8cf60d76b054c6f52c5c02fd Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Thu, 22 Aug 2024 22:06:31 +0200 Subject: [PATCH] fix: :bug: Add missing wording about database edits --- app/entities/follow/page.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/entities/follow/page.mdx b/app/entities/follow/page.mdx index 6563f26..179200b 100644 --- a/app/entities/follow/page.mdx +++ b/app/entities/follow/page.mdx @@ -33,6 +33,7 @@ To accept the follow request, `Alice` can do the following: 1. Create a [FollowAccept](/entities/follow-accept) entity with `Alice` as the author and `Joe` as the follower. 2. Send the `FollowAccept` entity to `Joe`'s inbox. +3. Update the relationship status in its database to "accepted". ### Rejecting the Follow Request @@ -40,6 +41,7 @@ To reject the follow request, `Alice` can do the following: 1. Create a [FollowReject](/entities/follow-reject) entity with `Alice` as the author and `Joe` as the follower. 2. Send the `FollowReject` entity to `Joe`'s inbox. +3. Optionally, log the rejection in its database. ### Final Steps