You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
return{error: 'Você não tem permissão para este agendamento'}
845
+
}
846
+
847
+
constworkspace=awaitprisma.workspace.findUnique({
848
+
where: {id: workspaceId},
849
+
select: {name: true}
850
+
})
851
+
852
+
if(!workspace){
853
+
return{error: 'Workspace inválido'}
854
+
}
855
+
856
+
// Get booking details for the message
857
+
constrawDate=newDate(booking.scheduledFor)
858
+
constdateStr=rawDate.toLocaleDateString('pt-BR',{
859
+
day: 'numeric',
860
+
month: 'long',
861
+
year: 'numeric',
862
+
hour: '2-digit',
863
+
minute: '2-digit'
864
+
})
865
+
866
+
constmessageText=`⚡ *KRONØS OS - Link da Ficha de Anamnese* ⚡\n\nOlá, *${booking.client.name||'Cliente'}*!\n\nEste é um lembrete para preencher sua Ficha de Anamnese antes da sua sessão no *${workspace.name}*.\n\n👤 *Artista:* ${booking.artist.user.name||'Artista'}\n📅 *Data:* ${dateStr}\n\n⚠️ *IMPORTANTE:* O preenchimento da sua Ficha de Anamnese é obrigatório antes do início da sessão.\nAcesse o link seguro para respondê-la digitalmente:\n👉 ${process.env.NEXTAUTH_URL}/fichas/${booking.id}\n\nNos vemos em breve!\n_${workspace.name}_`
0 commit comments