0
0
Fork 0
mirror of https://github.com/dani-garcia/vaultwarden synced 2024-06-10 16:08:57 +02:00

Fix /sync without query string

This commit is contained in:
janost 2018-10-19 00:54:40 +02:00
parent d613fa1e68
commit daa66b08dc
2 changed files with 8 additions and 0 deletions

View file

@ -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")]
fn get_ciphers(headers: Headers, conn: DbConn) -> JsonResult {

View file

@ -30,6 +30,7 @@ pub fn routes() -> Vec<Route> {
prelogin,
sync,
sync_no_query,
get_ciphers,
get_cipher,