Hi, i've noticed when using the integrated pagination feature that it does not support zero as start index which although it is not common practice is a possibility that should be considered.
I found che in the "PathCollectionBuilder" class the following control
if (params.page.number > 1) { this.addParam(Core.injectedServices.rsJsonapiConfig.parameters.page.number + '=' + params.page.number); }
cause that the page param with 0 and 1 index will not be included.
Hi, i've noticed when using the integrated pagination feature that it does not support zero as start index which although it is not common practice is a possibility that should be considered. I found che in the "PathCollectionBuilder" class the following control
if (params.page.number > 1) { this.addParam(Core.injectedServices.rsJsonapiConfig.parameters.page.number + '=' + params.page.number); }
cause that the page param with 0 and 1 index will not be included.