Initial commit
This commit is contained in:
21
Backend/dist/Integrations/buildin/getiyo/integration.js
vendored
Normal file
21
Backend/dist/Integrations/buildin/getiyo/integration.js
vendored
Normal file
@@ -0,0 +1,21 @@
|
||||
exports.__esModule = true;
|
||||
var Integration = {
|
||||
name: 'Getiyo',
|
||||
description: 'Control your Getiyo channel.',
|
||||
connections: [
|
||||
{
|
||||
type: 'channel',
|
||||
name: 'Channel',
|
||||
fields: [
|
||||
{ id: 'protocol', name: 'Server Protocol', type: 'select', value: 'http', values: [{ id: 'http', text: "HTTP" }, { id: 'https', text: "HTTPS" }] },
|
||||
{ id: 'address', name: 'Server Address', type: 'text', value: 'getiyo.com' },
|
||||
{ id: 'port', name: 'Server Port', type: 'number', value: '443' },
|
||||
{ id: 'channel', name: 'Channel Name', type: 'text' },
|
||||
{ id: 'key', name: 'API Key', type: 'text' }
|
||||
]
|
||||
}
|
||||
],
|
||||
main: require('./main')
|
||||
};
|
||||
module.exports = Integration;
|
||||
//# sourceMappingURL=integration.js.map
|
||||
Reference in New Issue
Block a user