[MOD/ADD] Use glob-like system for admins.

This commit is contained in:
LDA 2024-07-06 02:16:52 +02:00
commit 95aaa0dbc9
10 changed files with 154 additions and 13 deletions

View file

@ -96,12 +96,12 @@ ParseeBotHandler(ParseeData *data, HashMap *event)
}
/* TODO: Make an improvment. This is the bare minimum */
if (!StrEquals(sender, data->config->matrix_admin))
if (!ParseeIsAdmin(data, sender))
{
Free(ASSend(
data->config, id, profile,
"m.room.message",
MatrixCreateNotice("You are not the admin")
MatrixCreateNotice("You are not authorised to do this.")
));
Free(profile);
return;