1
0
Fork 0

wip[org]: More work on account pages

This commit is contained in:
joostdecock 2024-12-15 17:54:25 +01:00
parent bc584399e2
commit 3733f93e45
25 changed files with 1823 additions and 437 deletions

View file

@ -114,7 +114,9 @@ function Backend(token) {
this.token = token
this.headers = authenticationHeaders(token)
this.restClient = new RestClient(backend, this.headers)
this.delete = this.restClient.delete
this.get = this.restClient.get
this.patch = this.restClient.patch
this.put = this.restClient.put
this.post = this.restClient.post
}