Skip to content
Snippets Groups Projects
Unverified Commit 21501832 authored by Florian Raith's avatar Florian Raith Committed by GitHub
Browse files

Disallow multiple teachers joining one channel (#78)

parent 014f289f
No related branches found
No related tags found
No related merge requests found
......@@ -48,7 +48,7 @@ export class UniqueAlert implements Alerts {
this.title = alert.title;
this.message = alert.message;
this.removeAfter(5000);
this.removeAfter(6000);
}
/**
......
......@@ -69,6 +69,17 @@ export async function roomGuard(to: RouteLocationNormalized) {
if (err === 'Wrong password') {
return { name: 'home', query: { code: to.params.id } };
}
if (err === 'Not authorized') {
alerts.danger(
'Raum beitreten fehlgeschlagen',
`Du darfst diesen Raum nicht als Lehrer betreten, da du nicht der Besitzer bist.<br>
Logge dich aus um den Raum als Schüler zu betreten.`,
);
return { name: 'home' };
}
alerts.error('Raum beitreten fehlgeschlagen', err as Error);
return { name: 'home' };
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment