Improve knocking support

This commit is contained in:
nexy7574 2025-01-12 21:09:53 +00:00
parent 00c97fb5df
commit b00d960a27

View file

@ -1,5 +1,5 @@
// gomuks - A Matrix client written in Go. // gomuks - A Matrix client written in Go.
// Copyright (C) 2024 Tulir Asokan // Copyright (C) 2025 Nexus Nicholson
// //
// This program is free software: you can redistribute it and/or modify // This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by // it under the terms of the GNU Affero General Public License as published by
@ -92,7 +92,7 @@ const UserModeration = ({ userID, client, member }: UserModerationProps) => {
disabled={actionInProgress} disabled={actionInProgress}
> >
<PersonAdd /> <PersonAdd />
<span>Invite</span> <span>{membership === "knock" ? "Accept request to join" : "Invite"}</span>
</button> </button>
)} )}
{["knock", "invite"].includes(membership) && ( {["knock", "invite"].includes(membership) && (