fix StreamingKey naming

This commit is contained in:
srgooglo 2022-10-20 17:49:15 +02:00
parent dcee9f2c24
commit e2d4eba699
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ export const Comment = mongoose.model("Comment", schemas.Comment, "comments")
export const SavedPost = mongoose.model("SavedPost", schemas.SavedPost, "savedPosts")
// streamings
export const StreamingKey = mongoose.model("StreamingKey", schemas.streamingKey, "streamingKeys")
export const StreamingKey = mongoose.model("StreamingKey", schemas.StreamingKey, "streamingKeys")
export const StreamingInfo = mongoose.model("StreamingInfo", schemas.StreamingInfo, "streamingInfos")
// others

View File

@ -11,9 +11,9 @@ export { default as SavedPost } from "./savedPost"
export { default as UserFollow } from "./userFollow"
export { default as Badge } from "./badge"
export { default as streamingKey } from "./streamingKey"
export { default as FeaturedWallpaper } from "./featuredWallpaper"
export { default as FeaturedEvent } from "./featuredEvent"
export { default as StreamingKey } from "./streamingKey"
export { default as StreamingInfo } from "./streamingInfo"