log next steps if a guest account registered and attempted to get admin
this might be an unreachable state with the next commit, but let's be extra sure here just in case a guest still managed to register before a real admin was created. Signed-off-by: strawberry <strawberry@puppygock.gay>
This commit is contained in:
parent
c026ef77fb
commit
01a8f6323d
1 changed files with 4 additions and 1 deletions
|
@ -13,7 +13,7 @@ use ruma::{
|
|||
events::{room::message::RoomMessageEventContent, GlobalAccountDataEventType},
|
||||
push, UserId,
|
||||
};
|
||||
use tracing::{info, warn};
|
||||
use tracing::{error, info, warn};
|
||||
|
||||
use register::RegistrationKind;
|
||||
|
||||
|
@ -270,6 +270,9 @@ pub async fn register_route(body: Ruma<register::v3::Request>) -> Result<registe
|
|||
.await?;
|
||||
|
||||
warn!("Granting {} admin privileges as the first user", user_id);
|
||||
} else {
|
||||
error!("First registered user \"{user_id}\" is a guest account, not granting admin privileges.\n
|
||||
Recommend disabling public and guest registrations, and using emergency password to get access back, or reset your database with disabled registration.");
|
||||
}
|
||||
|
||||
Ok(register::v3::Response {
|
||||
|
|
Loading…
Add table
Reference in a new issue