Changes between Version 90 and Version 91 of S3/S3REST/s3_rest_controller
- Timestamp:
- 01/12/22 09:41:22 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
S3/S3REST/s3_rest_controller
v90 v91 45 45 46 46 {{{#!python 47 s3 mgr.configure(table, key=value)47 s3db.configure(table, key=value) 48 48 }}} 49 49 … … 55 55 You can specify multiple settings at once: 56 56 {{{#!python 57 s3 mgr.configure(table, key1=value1, key2=value2, ...)57 s3db.configure(table, key1=value1, key2=value2, ...) 58 58 }}} 59 59 … … 63 63 64 64 {{{#!python 65 s3 mgr.model.clear_config(table, "key")65 s3db.model.clear_config(table, "key") 66 66 }}} 67 67