Allow to import keys from previous Garage instance

This commit is contained in:
Alex Auvolat
2021-03-18 19:24:59 +01:00
parent 8e317e2783
commit 4eb16e8863
3 changed files with 37 additions and 0 deletions
+9
View File
@@ -34,6 +34,15 @@ impl Key {
authorized_buckets: crdt::LWWMap::new(),
}
}
pub fn import(key_id: &str, secret_key: &str, name: &str) -> Self {
Self {
key_id: key_id.to_string(),
secret_key: secret_key.to_string(),
name: crdt::LWW::new(name.to_string()),
deleted: crdt::Bool::new(false),
authorized_buckets: crdt::LWWMap::new(),
}
}
pub fn delete(key_id: String) -> Self {
Self {
key_id,