Expose manifest params JSON

This commit is contained in:
2023-11-03 16:15:34 +01:00
parent 4ffc5277c0
commit 6895e69618
3 changed files with 34 additions and 1 deletions

10
controllers/params.mjs Normal file
View File

@@ -0,0 +1,10 @@
'use strict';
import Common from '../src/common.js';
/**
* Show all possible parameters for manifest URLs
*/
export default async function exposeParams() {
return await Common.getParamsFromFolders();
}