diff options
author | Mantas Vilčinskas <11616378+mistermantas@users.noreply.github.com> | 2020-05-19 13:09:41 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-19 13:09:41 +0300 |
commit | fc16aa965d2c979e78f1d58d064c0330fa3e3cb9 (patch) | |
tree | 6a03bd7fdb9ebd49effd5bd62688cfd6765121d6 /exampleSite | |
parent | 409e777860f309c3bcff850b52654ac9e00692b9 (diff) | |
parent | 50d99f38b5fffdf22c5c229a9b2540928244282f (diff) |
Add config option to disable incident history #108
Diffstat (limited to 'exampleSite')
-rw-r--r-- | exampleSite/config.yml | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/exampleSite/config.yml b/exampleSite/config.yml index afb644b..397eac8 100644 --- a/exampleSite/config.yml +++ b/exampleSite/config.yml @@ -172,6 +172,18 @@ params: # STRING; `monthly`, `yearly`, `none` incidentHistoryFormat: "yearly" + # Should incident history be hidden? + # + # By disabling the incident history, you also disable + # the RSS feed. To ensure no incidents are shown, you + # should delete them after they are resolved. This option + # overrides any other options that tailor your incident + # history’s look. + # + # Default: `false` + # BOOLEAN; `true`, `false` + disableIncidentHistory: false + # Disable dark mode # # If your OS and browser support the @@ -322,4 +334,4 @@ outputs: outputFormats: svg: isPlainText: true - mediaType: image/svg+xml
\ No newline at end of file + mediaType: image/svg+xml |