We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3422d9 commit acb4711Copy full SHA for acb4711
crates/devolutions-pedm/src/api/log.rs
@@ -0,0 +1,8 @@
1
+use axum::Json;
2
+
3
+use super::err::HandlerError;
4
5
+/// Placeholder route.
6
+pub(crate) async fn get_logs() -> Result<Json<Vec<()>>, HandlerError> {
7
+ Ok(Json(vec![]))
8
+}
crates/devolutions-pedm/src/db/pg.rs
@@ -10,7 +10,9 @@ use bb8::Pool;
10
use bb8_postgres::PostgresConnectionManager;
11
use chrono::{DateTime, Utc};
12
use devolutions_pedm_shared::policy::ElevationResult;
13
-use tokio_postgres::{types::ToSql, NoTls};
+use futures_util::try_join;
14
+use tokio_postgres::types::ToSql;
15
+use tokio_postgres::NoTls;
16
17
use crate::account::{AccountWithId, AccountsDiff, DomainId, Sid};
18
0 commit comments