|
@ -374,7 +374,6 @@ pub struct SendAccessData { |
|
|
async fn post_access( |
|
|
async fn post_access( |
|
|
access_id: &str, |
|
|
access_id: &str, |
|
|
data: JsonUpcase<SendAccessData>, |
|
|
data: JsonUpcase<SendAccessData>, |
|
|
headers: Headers, |
|
|
|
|
|
mut conn: DbConn, |
|
|
mut conn: DbConn, |
|
|
ip: ClientIp, |
|
|
ip: ClientIp, |
|
|
nt: Notify<'_>, |
|
|
nt: Notify<'_>, |
|
@ -423,7 +422,7 @@ async fn post_access( |
|
|
UpdateType::SyncSendUpdate, |
|
|
UpdateType::SyncSendUpdate, |
|
|
&send, |
|
|
&send, |
|
|
&send.update_users_revision(&mut conn).await, |
|
|
&send.update_users_revision(&mut conn).await, |
|
|
&headers.device.uuid, |
|
|
&String::from("00000000-0000-0000-0000-000000000000"), |
|
|
&mut conn, |
|
|
&mut conn, |
|
|
) |
|
|
) |
|
|
.await; |
|
|
.await; |
|
@ -437,7 +436,6 @@ async fn post_access_file( |
|
|
file_id: &str, |
|
|
file_id: &str, |
|
|
data: JsonUpcase<SendAccessData>, |
|
|
data: JsonUpcase<SendAccessData>, |
|
|
host: Host, |
|
|
host: Host, |
|
|
headers: Headers, |
|
|
|
|
|
mut conn: DbConn, |
|
|
mut conn: DbConn, |
|
|
nt: Notify<'_>, |
|
|
nt: Notify<'_>, |
|
|
) -> JsonResult { |
|
|
) -> JsonResult { |
|
@ -482,7 +480,7 @@ async fn post_access_file( |
|
|
UpdateType::SyncSendUpdate, |
|
|
UpdateType::SyncSendUpdate, |
|
|
&send, |
|
|
&send, |
|
|
&send.update_users_revision(&mut conn).await, |
|
|
&send.update_users_revision(&mut conn).await, |
|
|
&headers.device.uuid, |
|
|
&String::from("00000000-0000-0000-0000-000000000000"), |
|
|
&mut conn, |
|
|
&mut conn, |
|
|
) |
|
|
) |
|
|
.await; |
|
|
.await; |
|
|