webrtc-signaling-helpers
Version:
This is a helper package which is needed to be installed if webrtc-signaling-server is installed
18 lines (15 loc) • 749 B
JavaScript
// TechnicalHeist - www.technicalheist.com
// MIT License - https://github.com/technicalheist/webrtc-signaling-helpers/blob/master/LICENSE
// Documentation - https://github.com/technicalheist/webrtc-signaling-helpers
var CONST_STRINGS = {
ROOM_NOT_AVAILABLE: 'Room not available',
INVALID_PASSWORD: 'Invalid password',
USERID_NOT_AVAILABLE: 'User ID does not exist',
ROOM_PERMISSION_DENIED: 'Room permission denied',
ROOM_FULL: 'Room full',
DID_NOT_JOIN_ANY_ROOM: 'Did not join any room yet',
INVALID_SOCKET: 'Invalid socket',
PUBLIC_IDENTIFIER_MISSING: 'publicRoomIdentifier is required',
INVALID_ADMIN_CREDENTIAL: 'Invalid username or password attempted'
};
module.exports = exports = CONST_STRINGS;