mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-06-30 22:40:06 +02:00
Start adding notification manager
This commit is contained in:
10
server/managers/NotificationManager.js
Normal file
10
server/managers/NotificationManager.js
Normal file
@ -0,0 +1,10 @@
|
||||
const Logger = require("../Logger")
|
||||
|
||||
class NotificationManager {
|
||||
constructor() { }
|
||||
|
||||
onNewPodcastEpisode(libraryItem, episode) {
|
||||
Logger.debug(`[NotificationManager] onNewPodcastEpisode: Episode "${episode.title}" for podcast ${libraryItem.media.metadata.title}`)
|
||||
}
|
||||
}
|
||||
module.exports = NotificationManager
|
Reference in New Issue
Block a user