chore: Clippy fixes

This commit is contained in:
Ginger
2026-04-13 18:02:25 -04:00
parent 6a75755a65
commit 6ae1d5a578
3 changed files with 2 additions and 10 deletions
+2 -2
View File
@@ -367,7 +367,7 @@ pub async fn full_user_deactivate(
let room_power_levels = services
.rooms
.state_accessor
.get_room_power_levels(&room_id)
.get_room_power_levels(room_id)
.await;
let user_can_demote_self =
@@ -394,7 +394,7 @@ pub async fn full_user_deactivate(
// TODO: Redact all messages sent by the user in the room
}
for (pdu, room_id) in pdu_queue.into_iter() {
for (pdu, room_id) in pdu_queue {
let state_lock = services.rooms.state.mutex.lock(room_id.as_str()).await;
let _ = services
-1
View File
@@ -17,7 +17,6 @@
/// Query parameters needed to authenticate requests
#[derive(Deserialize)]
pub(super) struct AuthQueryParams {
pub(super) access_token: Option<String>,
pub(super) user_id: Option<String>,
/// Device ID for appservice device masquerading (MSC3202/MSC4190).
/// Can be provided as `device_id` or `org.matrix.msc3202.device_id`.
-7
View File
@@ -19,13 +19,6 @@
use crate::{router::args::AuthQueryParams, service::appservice::RegistrationInfo};
enum Token {
Appservice(Box<RegistrationInfo>),
User((OwnedUserId, OwnedDeviceId)),
Invalid,
None,
}
#[derive(Default)]
pub(super) struct Auth {
pub(super) origin: Option<OwnedServerName>,