Merge branch 'master' into mf/rssInboundManager

This commit is contained in:
mfcar 2024-01-21 04:00:36 -03:00
commit a6ffda0438
No known key found for this signature in database
48 changed files with 8417 additions and 25332 deletions

View file

@ -1,5 +1,12 @@
const { DataTypes, Model } = require('sequelize')
/**
* @typedef PodcastExpandedProperties
* @property {import('./PodcastEpisode')[]} podcastEpisodes
*
* @typedef {Podcast & PodcastExpandedProperties} PodcastExpanded
*/
class Podcast extends Model {
constructor(values, options) {
super(values, options)