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
commit afa1fb489c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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