aboutsummaryrefslogtreecommitdiff
path: root/src/zencore/include
diff options
context:
space:
mode:
authorPer Larsson <[email protected]>2023-11-15 12:19:21 +0100
committerGitHub <[email protected]>2023-11-15 12:19:21 +0100
commit8ff65cd87265b4b5065cbff3290169c417227de7 (patch)
tree69eb9a16dd76ee540c61b3ba3768789d591ba149 /src/zencore/include
parentadd doctest listener so we can output when test/subtests begin (#538) (diff)
downloadzen-8ff65cd87265b4b5065cbff3290169c417227de7.tar.xz
zen-8ff65cd87265b4b5065cbff3290169c417227de7.zip
Make object store endpoint S3 compatible. (#535)
* Make object store endpoint S3 compatible. * Removed XML pretty printing and set object store endpoint disabled by default.
Diffstat (limited to 'src/zencore/include')
-rw-r--r--src/zencore/include/zencore/iobuffer.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/zencore/include/zencore/iobuffer.h b/src/zencore/include/zencore/iobuffer.h
index 7accce41c..d891ed55b 100644
--- a/src/zencore/include/zencore/iobuffer.h
+++ b/src/zencore/include/zencore/iobuffer.h
@@ -31,6 +31,7 @@ enum class ZenContentType : uint8_t
kCSS = 11,
kPNG = 12,
kIcon = 13,
+ kXML = 14,
kCOUNT
};
@@ -70,6 +71,8 @@ ToString(ZenContentType ContentType)
return "png"sv;
case ZenContentType::kIcon:
return "icon"sv;
+ case ZenContentType::kXML:
+ return "xml"sv;
}
}