From e72b124497c124c2490d214fd54d9e549267ff7c Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Fri, 27 Sep 2024 04:09:20 +0200 Subject: [PATCH] [backend/razor] Add indication for migrated users to public preview --- Iceshrimp.Backend/Pages/User.cshtml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Iceshrimp.Backend/Pages/User.cshtml b/Iceshrimp.Backend/Pages/User.cshtml index d7b309d3..260e6c9d 100644 --- a/Iceshrimp.Backend/Pages/User.cshtml +++ b/Iceshrimp.Backend/Pages/User.cshtml @@ -42,5 +42,11 @@ else
@Html.Raw(Model.Bio ?? "This user hasn't added a bio yet.")
+ @if (Model.User.MovedToUri is { } target) + { +
+ This user has migrated to a different account. +
+ } } \ No newline at end of file