Adds transfer of leadership of a group

This commit is contained in:
Michel Fedde 2025-05-27 20:00:10 +02:00
parent fccc30626a
commit 13f2bf30fa
4 changed files with 67 additions and 4 deletions

View file

@ -1,3 +1,10 @@
export class UserError extends Error {
constructor(
message: string,
public readonly tryInstead: string|null = null
) {
super(message);
}
}