Merge pull request #1044 from jakemcdermott/fix-948

bump templates form credential_types page limit
This commit is contained in:
Jake McDermott
2018-01-24 09:35:43 -05:00
committed by GitHub

View File

@@ -66,7 +66,7 @@ function MultiCredentialService (Rest, ProcessErrors, $q, GetBasePath) {
this.getCredentialTypes = () => { this.getCredentialTypes = () => {
Rest.setUrl(GetBasePath('credential_types')); Rest.setUrl(GetBasePath('credential_types'));
return Rest return Rest
.get() .get({ params: { page_size: 200 }})
.catch(handleError('GET', 'credential types')); .catch(handleError('GET', 'credential types'));
}; };