fixed remaining issues and tests

This commit is contained in:
lotte
2019-06-25 11:17:22 +02:00
parent f980b55c1c
commit 4106e7cb21
10 changed files with 53 additions and 19 deletions

View File

@@ -42,7 +42,7 @@ export class IntegrationResponseParsingService extends BaseResponseParsingServic
protected processResponse(data: PaginatedList<IntegrationModel>): any {
const returnList = Array.of();
data.page.forEach((item, index) => {
if (item.type === AuthorityValue.type) {
if (item.type === AuthorityValue.type.value) {
data.page[index] = Object.assign(new AuthorityValue(), item);
}
});