feat(modal): add report success modal (also allows blocking user)

This commit is contained in:
Paul Makles
2023-02-23 17:52:47 +01:00
parent 58f35a2813
commit ff0330ec1b
5 changed files with 83 additions and 1 deletions

View File

@@ -42,6 +42,7 @@ import ModifyAccount from "./components/ModifyAccount";
import OutOfDate from "./components/OutOfDate";
import PendingFriendRequests from "./components/PendingFriendRequests";
import ReportContent from "./components/Report";
import ReportSuccess from "./components/ReportSuccess";
import ServerIdentity from "./components/ServerIdentity";
import ServerInfo from "./components/ServerInfo";
import ShowToken from "./components/ShowToken";
@@ -278,4 +279,5 @@ export const modalController = new ModalControllerExtended({
user_picker: UserPicker,
user_profile: UserProfile,
report: ReportContent,
report_success: ReportSuccess,
});