Skip to content
This repository has been archived by the owner on Dec 13, 2020. It is now read-only.

Commit

Permalink
Create getViewAttributesLayout() #1357
Browse files Browse the repository at this point in the history
- Fix deprecated api with new api - getViewAttributesLayout

(cherry picked from commit af25474)
  • Loading branch information
wiadev authored and metas-ts committed Dec 8, 2017
1 parent 1de609c commit 4a4865c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/actions/GenericActions.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,17 @@ export function initLayout(
);
}

export function getViewAttributesLayout(windowId, viewId, rowId) {
return axios.get(
config.API_URL +
'/documentView'+
'/' + windowId +
'/' + viewId +
'/' + rowId +
'/attributes/layout'
);
}

export function getData(
entity, docType, docId, tabId, rowId, subentity, subentityId, isAdvanced,
orderBy, viewId
Expand Down

0 comments on commit 4a4865c

Please sign in to comment.