From 7a567292ae4149bc8c9af34fbd491abeee48aa36 Mon Sep 17 00:00:00 2001 From: Sam Hoffman Date: Mon, 12 Jan 2026 23:14:53 -0500 Subject: [PATCH] UserCard - allow changing nick --- ircd.yaml | 2 +- irchad-web/src/components/Chat.vue | 28 ++++++++-------- irchad-web/src/components/UserCard.vue | 44 ++++++++++++++++++++++++++ irchad-web/src/stores/irc.js | 27 +++++++++++++++- 4 files changed, 84 insertions(+), 17 deletions(-) create mode 100644 irchad-web/src/components/UserCard.vue diff --git a/ircd.yaml b/ircd.yaml index 0b2d9ec..645f3e8 100644 --- a/ircd.yaml +++ b/ircd.yaml @@ -154,7 +154,7 @@ server: max-concurrent-connections: 16 # whether to restrict the rate of new connections per IP/CIDR - throttle: true + throttle: false # how long to keep track of connections for window: 10m # maximum number of new connections per IP/CIDR within the given duration diff --git a/irchad-web/src/components/Chat.vue b/irchad-web/src/components/Chat.vue index 21829f8..28e8ab1 100644 --- a/irchad-web/src/components/Chat.vue +++ b/irchad-web/src/components/Chat.vue @@ -1,21 +1,17 @@