initial push from external dev branches

This commit is contained in:
iFlip721
2026-06-11 16:40:21 -04:00
parent 986e83632b
commit 245034a43a
182 changed files with 15465 additions and 0 deletions

10
server/dist/models/PlaylistChannel.js vendored Normal file
View File

@@ -0,0 +1,10 @@
import { Schema, model } from 'mongoose';
const PlaylistChannelSchema = new Schema({
playlistId: { type: String, required: true, index: true },
channelId: { type: String, required: true, index: true },
order: { type: Number, required: true },
}, { versionKey: false });
PlaylistChannelSchema.index({ playlistId: 1, channelId: 1 }, { unique: true });
PlaylistChannelSchema.index({ playlistId: 1, order: 1 });
export const PlaylistChannel = model('PlaylistChannel', PlaylistChannelSchema);
//# sourceMappingURL=PlaylistChannel.js.map