sumba 2.13.1 → 2.14.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -123,6 +123,7 @@
123
123
  "aboutToDeleteSite%s": "You're about to delete a site with alias '%s'. Are you sure?",
124
124
  "aboutToCreateSite%s": "You're about to create a site with alias '%s'. Continue?",
125
125
  "removedFrom%s%s": "Removed from '%s' (%s record(s))",
126
+ "cacheStorage": "Cache Storage",
126
127
  "field": {
127
128
  "currentPassword": "Current Password",
128
129
  "newPassword": "New Password",
@@ -124,6 +124,7 @@
124
124
  "aboutToDeleteSite%s": "Anda akan menghapus sebuah situs dengan alias '%s'. Anda yakin?",
125
125
  "aboutToCreateSite%s": "Anda akan membuat sebuah situs dengan alias '%s'. Lanjutkan?",
126
126
  "removedFrom%s%s": "Dihapus dari '%s' (%s data)",
127
+ "cacheStorage": "Penyimpanan Cache",
127
128
  "field": {
128
129
  "currentPassword": "Kata Sandi Saat Ini",
129
130
  "newPassword": "Kata Sandi Baru",
@@ -0,0 +1,12 @@
1
+ const action = {
2
+ method: ['GET', 'POST'],
3
+ title: 'cacheStorage',
4
+ handler: async function (req, reply) {
5
+ if (!this.app.bajoCache) throw this.error('_notFound')
6
+ const { importModule } = this.app.bajo
7
+ const crudSkel = await importModule('waibuAdmin:/lib/crud-skel.js')
8
+ return await crudSkel.call(this, 'CacheStorage', req, reply)
9
+ }
10
+ }
11
+
12
+ export default action
package/index.js CHANGED
@@ -204,7 +204,8 @@ async function factory (pkgName) {
204
204
  }, {
205
205
  title: 'misc',
206
206
  children: [
207
- { title: 'userSession', href: `waibuAdmin:/${prefix}/session/list` }
207
+ { title: 'userSession', href: `waibuAdmin:/${prefix}/session/list` },
208
+ { title: 'cacheStorage', href: `waibuAdmin:/${prefix}/cache/list` }
208
209
  ]
209
210
  }]
210
211
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sumba",
3
- "version": "2.13.1",
3
+ "version": "2.14.0",
4
4
  "description": "Biz Suite for Bajo Framework",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/wiki/CHANGES.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changes
2
2
 
3
+ ## 2026-03-27
4
+
5
+ - [2.14.0] Add support for cache storage management
6
+
3
7
  ## 2026-03-25
4
8
 
5
9
  - [2.13.0] Add bajo cache handling for ```getUser*()``` and ```getSite()```