Accessibility updates to config page settings

This commit is contained in:
advplyr
2024-12-19 18:04:56 -06:00
parent 71b943f434
commit aea2951b89
4 changed files with 81 additions and 10 deletions
+18
View File
@@ -0,0 +1,18 @@
const PluginAbstract = require('../../server/PluginAbstract')
class TestPlugin extends PluginAbstract {
constructor() {
super()
this.name = 'Test'
}
init(context) {
context.Logger.info('[TestPlugin] Test plugin loaded successfully')
}
async onAction(context, actionName, target, data) {
context.Logger.info('[TestPlugin] Test plugin onAction', actionName, target, data)
}
}
module.exports = new TestPlugin()