diff --git a/plugins/love-resources/src/invites.ts b/plugins/love-resources/src/invites.ts index 50e617e6455..cca74396733 100644 --- a/plugins/love-resources/src/invites.ts +++ b/plugins/love-resources/src/invites.ts @@ -13,7 +13,7 @@ // limitations under the License. // -import { type Ref } from '@hcengineering/core' +import { AccountRole, getCurrentAccount, type Ref } from '@hcengineering/core' import { getCurrentEmployee, type Person } from '@hcengineering/contact' import { type PopupResult, showPopup } from '@hcengineering/ui' import { type UnsubscribeCallback } from '@hcengineering/hulypulse-client' @@ -68,6 +68,7 @@ export async function unsubscribeInviteResponses (): Promise { } export function sendInvites (persons: Array>): void { + if (getCurrentAccount().role === AccountRole.ReadOnlyGuest) return closeInvitesPopup() requestPersons = persons const myParticipation = get(myInfo) @@ -86,6 +87,7 @@ export function closeInvitesPopup (): void { } export async function updateInvites (persons: Array>, meetingId: string): Promise { + if (getCurrentAccount().role === AccountRole.ReadOnlyGuest) return const client = await createPulseClient() const currentPerson = getCurrentEmployee() @@ -143,6 +145,7 @@ let activeRequestKey: string | undefined let activeRequestsMap: Map export async function subscribeInviteRequests (): Promise { + if (getCurrentAccount().role === AccountRole.ReadOnlyGuest) return const client = await createPulseClient() if (client === undefined) return diff --git a/plugins/love-resources/src/joinRequests.ts b/plugins/love-resources/src/joinRequests.ts index 88e77630e3d..b6cdc8d66b3 100644 --- a/plugins/love-resources/src/joinRequests.ts +++ b/plugins/love-resources/src/joinRequests.ts @@ -13,7 +13,7 @@ // limitations under the License. // -import { type Ref } from '@hcengineering/core' +import { AccountRole, getCurrentAccount, type Ref } from '@hcengineering/core' import { getCurrentEmployee, type Person } from '@hcengineering/contact' import { type PopupResult, showPopup } from '@hcengineering/ui' import { type UnsubscribeCallback } from '@hcengineering/hulypulse-client' @@ -65,6 +65,7 @@ export async function unsubscribeJoinResponses (): Promise { } export function sendJoinRequest (meetingId: string): void { + if (getCurrentAccount().role === AccountRole.ReadOnlyGuest) return closeJoinRequestPopup() requestMeetingId = meetingId requestPopup = showPopup(JoinRequestPopup, { meetingId }, undefined, undefined, undefined, { @@ -80,6 +81,7 @@ export function closeJoinRequestPopup (): void { } export async function updateJoinRequest (): Promise { + if (getCurrentAccount().role === AccountRole.ReadOnlyGuest) return const client = await createPulseClient() const currentPerson = getCurrentEmployee() @@ -135,6 +137,7 @@ let activeRequestKey: string | undefined let activeRequestsMap: Map | undefined export async function subscribeJoinRequests (meetingId: string | undefined): Promise { + if (getCurrentAccount().role === AccountRole.ReadOnlyGuest) return if (meetingId === undefined) return const client = await createPulseClient()