mirror of
https://gitlab.com/famedly/conduit.git
synced 2024-11-09 06:41:04 +01:00
change search_events_v3 to search_events::v3
This commit is contained in:
parent
e9f87e1952
commit
557d119bee
1 changed files with 6 additions and 6 deletions
|
@ -1,9 +1,9 @@
|
||||||
use crate::{database::DatabaseGuard, Error, Result, Ruma};
|
use crate::{database::DatabaseGuard, Error, Result, Ruma};
|
||||||
use ruma::api::client::{
|
use ruma::api::client::{
|
||||||
error::ErrorKind,
|
error::ErrorKind,
|
||||||
search::search_events::v3::{
|
search::search_events::{
|
||||||
self as search_events_v3, EventContextResult, ResultCategories, ResultRoomEvents,
|
self,
|
||||||
SearchResult,
|
v3::{EventContextResult, ResultCategories, ResultRoomEvents, SearchResult},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -16,8 +16,8 @@ use std::collections::BTreeMap;
|
||||||
/// - Only works if the user is currently joined to the room (TODO: Respect history visibility)
|
/// - Only works if the user is currently joined to the room (TODO: Respect history visibility)
|
||||||
pub async fn search_events_route(
|
pub async fn search_events_route(
|
||||||
db: DatabaseGuard,
|
db: DatabaseGuard,
|
||||||
body: Ruma<search_events_v3::Request<'_>>,
|
body: Ruma<search_events::v3::Request<'_>>,
|
||||||
) -> Result<search_events_v3::Response> {
|
) -> Result<search_events::v3::Response> {
|
||||||
let sender_user = body.sender_user.as_ref().expect("user is authenticated");
|
let sender_user = body.sender_user.as_ref().expect("user is authenticated");
|
||||||
|
|
||||||
let search_criteria = body.search_categories.room_events.as_ref().unwrap();
|
let search_criteria = body.search_categories.room_events.as_ref().unwrap();
|
||||||
|
@ -102,7 +102,7 @@ pub async fn search_events_route(
|
||||||
Some((skip + limit).to_string())
|
Some((skip + limit).to_string())
|
||||||
};
|
};
|
||||||
|
|
||||||
Ok(search_events_v3::Response::new(ResultCategories {
|
Ok(search_events::v3::Response::new(ResultCategories {
|
||||||
room_events: ResultRoomEvents {
|
room_events: ResultRoomEvents {
|
||||||
count: Some((results.len() as u32).into()), // TODO: set this to none. Element shouldn't depend on it
|
count: Some((results.len() as u32).into()), // TODO: set this to none. Element shouldn't depend on it
|
||||||
groups: BTreeMap::new(), // TODO
|
groups: BTreeMap::new(), // TODO
|
||||||
|
|
Loading…
Reference in a new issue