1
0
Fork 0
mirror of https://github.com/classchartsapi/classcharts-api-js.git synced 2026-05-14 19:59:37 +00:00

fix: getPupilFields url

This commit is contained in:
Veloi 2023-09-18 20:09:10 +01:00 committed by GitHub
parent 2a0ffdb8ef
commit c70f7b4215
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -310,7 +310,7 @@ export class BaseClient {
async getPupilFields(): Promise<PupilFieldsResponse> { async getPupilFields(): Promise<PupilFieldsResponse> {
return ( return (
await this.makeAuthedRequest( await this.makeAuthedRequest(
this.API_BASE + "/apiv2student/customfields/" + this.studentId, this.API_BASE + "/customfields/" + this.studentId,
{ {
method: "GET" method: "GET"
} }