summaryrefslogtreecommitdiffstats
path: root/webapp/actions/webrtc_actions.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'webapp/actions/webrtc_actions.jsx')
-rw-r--r--webapp/actions/webrtc_actions.jsx38
1 files changed, 0 insertions, 38 deletions
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();
- }
- }
- );
-}