Merge remote-tracking branch 'origin/develop' into feat-output-select
This commit is contained in:
@@ -14,4 +14,9 @@ export const addChatHistory = (chatHistory) =>
|
||||
({
|
||||
type : 'ADD_CHAT_HISTORY',
|
||||
payload : { chatHistory }
|
||||
});
|
||||
|
||||
export const clearChat = () =>
|
||||
({
|
||||
type : 'CLEAR_CHAT'
|
||||
});
|
||||
@@ -32,4 +32,9 @@ export const setFileDone = (magnetUri, sharedFiles) =>
|
||||
({
|
||||
type : 'SET_FILE_DONE',
|
||||
payload : { magnetUri, sharedFiles }
|
||||
});
|
||||
|
||||
export const clearFiles = () =>
|
||||
({
|
||||
type : 'CLEAR_FILES'
|
||||
});
|
||||
@@ -4,9 +4,10 @@ export const setMe = ({ peerId, loginEnabled }) =>
|
||||
payload : { peerId, loginEnabled }
|
||||
});
|
||||
|
||||
export const setIsMobile = () =>
|
||||
export const setBrowser = (browser) =>
|
||||
({
|
||||
type : 'SET_IS_MOBILE'
|
||||
type : 'SET_BROWSER',
|
||||
payload : { browser }
|
||||
});
|
||||
|
||||
export const loggedIn = (flag) =>
|
||||
|
||||
@@ -129,6 +129,18 @@ export const setCloseMeetingInProgress = (flag) =>
|
||||
payload : { flag }
|
||||
});
|
||||
|
||||
export const setClearChatInProgress = (flag) =>
|
||||
({
|
||||
type : 'CLEAR_CHAT_IN_PROGRESS',
|
||||
payload : { flag }
|
||||
});
|
||||
|
||||
export const setClearFileSharingInProgress = (flag) =>
|
||||
({
|
||||
type : 'CLEAR_FILE_SHARING_IN_PROGRESS',
|
||||
payload : { flag }
|
||||
});
|
||||
|
||||
export const setUserRoles = (userRoles) =>
|
||||
({
|
||||
type : 'SET_USER_ROLES',
|
||||
@@ -139,4 +151,4 @@ export const setPermissionsFromRoles = (permissionsFromRoles) =>
|
||||
({
|
||||
type : 'SET_PERMISSIONS_FROM_ROLES',
|
||||
payload : { permissionsFromRoles }
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user