[TIC-Web] add notification dialog when image creation
[archive/20170607/tools/tic.git] / server / fs / socketEvent.js
1 'use strict';
2
3 var SocketEvent = {};
4
5 SocketEvent.APP_CONFIG_TO = 'ws/app/config/to';
6 SocketEvent.APP_CONFIG_FROM = 'ws/app/config/from';
7
8 SocketEvent.MIC_AVAILABLE_TO = 'ws/mic/available/to';
9 SocketEvent.MIC_AVAILABLE_FROM = 'ws/mic/available/from';
10
11 SocketEvent.FS_IMAGE_LIST_TO = 'ws/fs/image/list/to';
12 SocketEvent.FS_IMAGE_LIST_FROM = 'ws/fs/image/list/from';
13
14 SocketEvent.FS_IMAGE_ADD_TO = 'ws/fs/image/add/to';
15 SocketEvent.FS_IMAGE_ADD_FROM = 'ws/fs/image/add/from';
16 SocketEvent.FS_IMAGE_ADD_KILL = 'ws/fs/image/add/kill';
17 SocketEvent.FS_IMAGE_ADD_FAIL = 'ws/fs/image/add/fail';
18 SocketEvent.FS_IMAGE_ADD_FINISH = 'ws/fs/image/add/finish';
19
20 module.exports = SocketEvent;