Browse Source
Merge pull request #216 from murka/patch-1
feat(WireGuard): return client data by createClient.
pull/285/head
Emile Nijssen
3 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
0 deletions
-
src/lib/WireGuard.js
|
@ -265,6 +265,8 @@ Endpoint = ${WG_HOST}:${WG_PORT}`; |
|
|
config.clients[clientId] = client; |
|
|
config.clients[clientId] = client; |
|
|
|
|
|
|
|
|
await this.saveConfig(); |
|
|
await this.saveConfig(); |
|
|
|
|
|
|
|
|
|
|
|
return client; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
async deleteClient({ clientId }) { |
|
|
async deleteClient({ clientId }) { |
|
|