aboutsummaryrefslogtreecommitdiff
path: root/src/model/bucket_table.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/model/bucket_table.rs')
-rw-r--r--src/model/bucket_table.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/model/bucket_table.rs b/src/model/bucket_table.rs
index 609490cb..78b0416f 100644
--- a/src/model/bucket_table.rs
+++ b/src/model/bucket_table.rs
@@ -45,7 +45,7 @@ impl CRDT for BucketState {
#[derive(PartialEq, Clone, Debug, Serialize, Deserialize)]
pub struct BucketParams {
pub authorized_keys: crdt::LWWMap<String, PermissionSet>,
- pub website: crdt::LWW<bool>
+ pub website: crdt::LWW<bool>,
}
impl CRDT for BucketParams {
@@ -59,7 +59,7 @@ impl BucketParams {
pub fn new() -> Self {
BucketParams {
authorized_keys: crdt::LWWMap::new(),
- website: crdt::LWW::new(false)
+ website: crdt::LWW::new(false),
}
}
}
@@ -134,10 +134,10 @@ impl TableSchema for BucketTable {
},
));
}
-
+
let params = BucketParams {
authorized_keys: keys,
- website: crdt::LWW::new(false)
+ website: crdt::LWW::new(false),
};
Some(Bucket {