Skip to content

Commit

Permalink
Switched tags routes to REST API
Browse files Browse the repository at this point in the history
  • Loading branch information
Ninjeneer committed Dec 10, 2021
1 parent bd74480 commit 4c78769
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/provider/CentralServerProvider.tsx
Original file line number Diff line number Diff line change
@@ -795,7 +795,7 @@ export default class CentralServerProvider {
// Force only local tags
params.Issuer = true;
// Call
const result = await this.axiosInstance.get(`${this.buildCentralRestServerServiceSecuredURL()}/${ServerAction.TAGS}`, {
const result = await this.axiosInstance.get(this.buildRestEndpointUrl(ServerRoute.REST_TAGS), {
headers: this.buildSecuredHeaders(),
params
});

0 comments on commit 4c78769

Please sign in to comment.