Added copyright notice to files that needed it
This commit is contained in:
parent
1ecc3e411c
commit
537649f166
10 changed files with 30 additions and 0 deletions
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
export const SELECT_CHANNEL = 'SELECT_CHANNEL';
|
||||
|
||||
export const FETCH_CHANNELS_REQUEST = 'FETCH_CHANNELS_REQUEST';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
export const DEVICE_REQUEST = 'DEVICE_REQUEST';
|
||||
export const DEVICE_SUCCESS = 'DEVICE_SUCCESS';
|
||||
export const DEVICE_FAILURE = 'DEVICE_FAILURE';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
export const PING_REQUEST = 'PING_REQUEST';
|
||||
export const PING_SUCCESS = 'PING_SUCCESS';
|
||||
export const PING_FAILURE = 'PING_FAILURE';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
import * as ChannelsTypes from './channels';
|
||||
import * as DeviceTypes from './device';
|
||||
import * as GeneralTypes from './general';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
export const LOGIN_REQUEST = 'LOGIN_REQUEST';
|
||||
export const LOGIN_SUCCESS = 'LOGIN_SUCCESS';
|
||||
export const LOGIN_FAILURE = 'LOGIN_FAILURE';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
export const LOGOUT_REQUEST = 'LOGOUT_REQUEST';
|
||||
export const LOGOUT_SUCCESS = 'LOGOUT_SUCCESS';
|
||||
export const LOGOUT_FAILURE = 'LOGOUT_FAILURE';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
export const FETCH_POSTS_REQUEST = 'FETCH_POSTS_REQUEST';
|
||||
export const FETCH_POSTS_SUCCESS = 'FETCH_POSTS_SUCCESS';
|
||||
export const FETCH_POSTS_FAILURE = 'FETCH_POSTS_FAILURE';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
export const SELECT_TEAM = 'SELECT_TEAM';
|
||||
|
||||
export const FETCH_TEAMS_REQUEST = 'FETCH_TEAMS_REQUEST';
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
import {PostsTypes, LogoutTypes} from 'constants';
|
||||
const types = {...PostsTypes, ...LogoutTypes};
|
||||
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
// Copyright (c) 2016 Mattermost, Inc. All Rights Reserved.
|
||||
// See License.txt for license information.
|
||||
|
||||
import {TeamsTypes, LogoutTypes} from 'constants';
|
||||
const types = {...TeamsTypes, ...LogoutTypes};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue