mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2026-07-10 14:52:51 +02:00
Accessibility updates to config page settings
This commit is contained in:
@@ -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()
|
||||
Reference in New Issue
Block a user