]> Untitled Git - lemmy.git/blobdiff - crates/api/src/lib.rs
Merge branch 'main' into change_password_api
[lemmy.git] / crates / api / src / lib.rs
index c9de749ef36e9a9999392b99738b3b57cc912372..0ba3fbea21370913f7b533ddb1afaec718fb1576 100644 (file)
@@ -63,6 +63,9 @@ pub async fn match_websocket_operation(
     UserOperation::SaveUserSettings => {
       do_websocket_operation::<SaveUserSettings>(context, id, op, data).await
     }
+    UserOperation::ChangePassword => {
+      do_websocket_operation::<ChangePassword>(context, id, op, data).await
+    }
     UserOperation::GetReportCount => {
       do_websocket_operation::<GetReportCount>(context, id, op, data).await
     }