mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-09 18:44:16 +00:00
37 lines
870 B
JavaScript
Executable File
37 lines
870 B
JavaScript
Executable File
export default {
|
|
name: "StreamingProfile",
|
|
collection: "streamingProfiles",
|
|
schema: {
|
|
user_id: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
profile_name: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
stream_key: {
|
|
type: String,
|
|
required: true,
|
|
select: false,
|
|
},
|
|
info: {
|
|
type: Object,
|
|
default: {
|
|
title: "Untitled",
|
|
description: "No description",
|
|
category: "other",
|
|
thumbnail: null,
|
|
}
|
|
},
|
|
options: {
|
|
type: Object,
|
|
default: {
|
|
connection_protected: true,
|
|
private: false,
|
|
chatEnabled: true,
|
|
drvEnabled: false,
|
|
}
|
|
}
|
|
}
|
|
} |