Skip to content

Commit

Permalink
enh: increase limits
Browse files Browse the repository at this point in the history
  • Loading branch information
anibalsolon committed Dec 4, 2023
1 parent 1161174 commit a56ae61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion api/common.js
Original file line number Diff line number Diff line change
Expand Up @@ -758,7 +758,7 @@ exports.cacheContact = function(cb) {
console.debug("caching contacts", config.warehouse.jwt);
axios.get(config.auth.api+"/profile/list", {
params: {
limit: 5000, //TODO -- really!?
limit: 6000, //TODO -- really!?
},
headers: { authorization: "Bearer "+config.warehouse.jwt }, //config.auth.jwt is deprecated
}).then(res=>{
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/contactlist.vue
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default {
//TODO I should let ui-select/async and let it "search" users
if(!profilesCache) profilesCache = this.$http.get(Vue.config.auth_api+'/profile/list', {params: {
find: JSON.stringify({active: true}),
limit: 5000,
limit: 6000,
}});
profilesCache.then(res=>{
Expand Down

0 comments on commit a56ae61

Please sign in to comment.