Peter Lewis
2 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/www/js/api.js
|
@ -62,7 +62,7 @@ class API { |
|
|
return this.call({ |
|
|
return this.call({ |
|
|
method: 'get', |
|
|
method: 'get', |
|
|
path: '/wireguard/client', |
|
|
path: '/wireguard/client', |
|
|
}).then(clients => clients.map(client => ({ |
|
|
}).then((clients) => clients.map((client) => ({ |
|
|
...client, |
|
|
...client, |
|
|
createdAt: new Date(client.createdAt), |
|
|
createdAt: new Date(client.createdAt), |
|
|
updatedAt: new Date(client.updatedAt), |
|
|
updatedAt: new Date(client.updatedAt), |
|
|