Remove commented code

This commit is contained in:
mfcar 2024-05-11 22:14:12 +01:00
parent 8792a46d70
commit 00bfb5ced4
No known key found for this signature in database

View file

@ -544,26 +544,4 @@ module.exports = {
}
})
}
/** Get podcasts with feed url */
// async getPodcastsWithFeedUrl() {
// const podcasts = await Database.podcastModel.findAll({
// where: {
// feedURL: {
// [Sequelize.Op.ne]: null
// }
// },
// include: {
// model: Database.libraryItemModel,
// attributes: ['id', 'libraryId']
// }
// })
// return podcasts.map(podcast => {
// return {
// id: podcast.libraryItem.id,
// title: podcast.title,
// feedURL: podcast.feedURL
// }
// })
// }
}