updated translations and oauth

This commit is contained in:
2021-11-19 09:30:04 +00:00
parent 3c38da1400
commit f9f7b777e7
91 changed files with 2519 additions and 1275 deletions
+8
View File
@@ -5,6 +5,7 @@ export const searchResultsActionTypes = {
SETSEARCHDETAILS: "SETSEARCHDETAILS",
SETDOCUMENTDETAILS: "SETDOCUMENTDETAILS",
SETDOCUMENTHISTORY: "SETDOCUMENTHISTORY",
SETREPRESENTATIONS: "SETREPRESENTATIONS",
};
export const getSearchResultshObj = () => (dispatch) => {
@@ -39,3 +40,10 @@ export const setDocumentHistory = (documentHistory) => (dispatch) => {
documentHistoryObj: documentHistory,
});
};
export const setRepresentations = (representations) => (dispatch) => {
return dispatch({
type: searchResultsActionTypes.SETREPRESENTATIONS,
representationsObj: representations,
});
};