aboutsummaryrefslogtreecommitdiff
path: root/src/model
diff options
context:
space:
mode:
Diffstat (limited to 'src/model')
-rw-r--r--src/model/bucket_table.rs12
-rw-r--r--src/model/migrate.rs2
2 files changed, 4 insertions, 10 deletions
diff --git a/src/model/bucket_table.rs b/src/model/bucket_table.rs
index 8dcf6913..fef29b62 100644
--- a/src/model/bucket_table.rs
+++ b/src/model/bucket_table.rs
@@ -43,15 +43,9 @@ pub struct BucketParams {
}
#[derive(PartialEq, Eq, Clone, Debug, Serialize, Deserialize)]
-pub enum WebsiteConfig {
- RedirectAll {
- hostname: String,
- protocol: String,
- },
- Website {
- index_document: String,
- error_document: Option<String>,
- },
+pub struct WebsiteConfig {
+ pub index_document: String,
+ pub error_document: Option<String>,
}
impl BucketParams {
diff --git a/src/model/migrate.rs b/src/model/migrate.rs
index 6b20a01f..a5508c4d 100644
--- a/src/model/migrate.rs
+++ b/src/model/migrate.rs
@@ -70,7 +70,7 @@ impl Migrate {
let alias_ts = aliases.get_timestamp(&new_name);
let website = if *old_bucket_p.website.get() {
- Some(WebsiteConfig::Website {
+ Some(WebsiteConfig {
index_document: "index.html".into(),
error_document: None,
})