From d8bd57901e33a7057e26e782e295099ffcc0da89 Mon Sep 17 00:00:00 2001 From: Christopher Speller Date: Wed, 6 Sep 2017 23:04:13 -0700 Subject: Removing webapp --- webapp/actions/webrtc_actions.jsx | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 webapp/actions/webrtc_actions.jsx (limited to 'webapp/actions/webrtc_actions.jsx') diff --git a/webapp/actions/webrtc_actions.jsx b/webapp/actions/webrtc_actions.jsx deleted file mode 100644 index 244de289b..000000000 --- a/webapp/actions/webrtc_actions.jsx +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved. -// See License.txt for license information. - -import AppDispatcher from 'dispatcher/app_dispatcher.jsx'; -import {WebrtcActionTypes} from 'utils/constants.jsx'; - -import {Client4} from 'mattermost-redux/client'; - -export function initWebrtc(userId, isCalling) { - AppDispatcher.handleServerAction({ - type: WebrtcActionTypes.INITIALIZE, - user_id: userId, - is_calling: isCalling - }); -} - -export function handle(message) { - AppDispatcher.handleServerAction({ - type: message.action, - message - }); -} - -export function webrtcToken(success, error) { - Client4.webrtcToken().then( - (data) => { - if (success) { - success(data); - } - } - ).catch( - () => { - if (error) { - error(); - } - } - ); -} -- cgit v1.2.3-1-g7c22