mirror of
https://github.com/ViViDboarder/bitwarden_rs.git
synced 2024-11-22 13:16:39 +00:00
Merge pull request #226 from janost/fix-sync-without-query-string
Fix /sync without query string
This commit is contained in:
commit
0a4dbaf307
@ -53,6 +53,13 @@ fn sync(data: SyncData, headers: Headers, conn: DbConn) -> JsonResult {
|
|||||||
})))
|
})))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[get("/sync")]
|
||||||
|
fn sync_no_query(headers: Headers, conn: DbConn) -> JsonResult {
|
||||||
|
let sync_data = SyncData {
|
||||||
|
excludeDomains: false,
|
||||||
|
};
|
||||||
|
sync(sync_data, headers, conn)
|
||||||
|
}
|
||||||
|
|
||||||
#[get("/ciphers")]
|
#[get("/ciphers")]
|
||||||
fn get_ciphers(headers: Headers, conn: DbConn) -> JsonResult {
|
fn get_ciphers(headers: Headers, conn: DbConn) -> JsonResult {
|
||||||
|
@ -30,6 +30,7 @@ pub fn routes() -> Vec<Route> {
|
|||||||
prelogin,
|
prelogin,
|
||||||
|
|
||||||
sync,
|
sync,
|
||||||
|
sync_no_query,
|
||||||
|
|
||||||
get_ciphers,
|
get_ciphers,
|
||||||
get_cipher,
|
get_cipher,
|
||||||
|
Loading…
Reference in New Issue
Block a user