mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2025-07-21 19:34:43 +02:00
Start adding notification manager
This commit is contained in:
parent
565bb4cd6b
commit
9a7503cde2
4 changed files with 61 additions and 4 deletions
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
|
Loading…
Add table
Add a link
Reference in a new issue