Skip to content

Commit

Permalink
change endpoint from cores to overview
Browse files Browse the repository at this point in the history
  • Loading branch information
filvecchiato committed Dec 20, 2024
1 parent 2fc1636 commit a05d3e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/openapi-v1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1098,7 +1098,7 @@ paths:
oneOf:
- $ref: '#/components/schemas/CoretimeChainInfoResponse'
- $ref: '#/components/schemas/CoretimeRelayInfoResponse'
/coretime/cores:
/coretime/overview:
get:
tags:
- coretime
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/coretime/CoretimeGenericController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export default class CoretimeGenericController extends AbstractController<Coreti
protected initRoutes(): void {
this.safeMountAsyncGetHandlers([
['/info', this.getCoretimeOverview],
['/cores', this.getCoretimeCores],
['/overview', this.getCoretimeCores],
]);
}

Expand Down

0 comments on commit a05d3e5

Please sign in to comment.