const classafBedSheet::ConfigIds

sys::Obj
  afBedSheet::ConfigIds

A list config values provided by BedSheet. To change their value, override them in your AppModule. Example:

@Contribute { serviceType=ConfigSource# } 
static Void configureConfigSource(MappedConfig config) {
  config.addOverride(ConfigIds.gzipThreshold, "my.gzip.threshold", 500)
}
gzipDisabled

Source

const static Str gzipDisabled := "afBedSheet.gzip.disabled"

If set to true then all gzipping is disabled, regardless of other configuration. Defaults to false.

gzipThreshold

Source

const static Str gzipThreshold := "afBedSheet.gzip.threshold"

The minimum output stream size, in bytes, before output is compressed using GZIP. Shorter streams are not compressed. The default is 376.

welcomePage

Source

const static Str welcomePage := "afBedSheet.welcomePage"

If a request uri of / is received it is automatically routed (internally) to this uri. Defaults to /index, set to null to disable.