add random avatars
This commit is contained in:
parent
87e6ce3f74
commit
ae239ef92e
|
@ -14,7 +14,7 @@ You have found the easiest way to install & manage WireGuard on any Linux host!
|
|||
* Download a client's configuration file.
|
||||
* Statistics for which clients are connected.
|
||||
* Tx/Rx charts for each connected client.
|
||||
* Gravatar support.
|
||||
* Gravatar support or random avatars.
|
||||
* Automatic Light / Dark Mode
|
||||
* Multilanguage Support
|
||||
* UI_TRAFFIC_STATS (default off)
|
||||
|
|
|
@ -175,6 +175,8 @@ new Vue({
|
|||
this.clients = clients.map((client) => {
|
||||
if (client.name.includes('@') && client.name.includes('.')) {
|
||||
client.avatar = `https://gravatar.com/avatar/${sha256(client.name.toLowerCase().trim())}.jpg`;
|
||||
} else {
|
||||
client.avatar = `https://api.dicebear.com/9.x/bottts/svg?seed=${sha256(client.name.toLowerCase().trim())}`
|
||||
}
|
||||
|
||||
if (!this.clientsPersist[client.id]) {
|
||||
|
|
Loading…
Reference in New Issue