Remove dupe reaction, log duplicates instead

The 🔁 emoji was being added for duplicate rides. Now we just log the

duplicate server-side without adding any reaction to the message.

Signed-off-by: Blake Ridgway <blake@blakeridgway.com>
This commit is contained in:
Blake Ridgway
2026-05-30 11:10:51 -05:00
parent d858d04e84
commit eb889236ef
7 changed files with 996 additions and 2 deletions

View File

@@ -97,6 +97,10 @@ deploy-env:
$(SSH) "chmod 600 $(JAIL_ROOT)/var/db/$(JAIL_NAME)/.env && \
chown 1001:1001 $(JAIL_ROOT)/var/db/$(JAIL_NAME)/.env"
# Pull .env from the jail to the local directory
pull-env:
$(SSH) "cat $(JAIL_ROOT)/var/db/$(JAIL_NAME)/.env" > .env
start:
$(SSH) "rm -f $(JAIL_ROOT)/var/run/$(JAIL_NAME).pid && \
jexec $(JAIL_NAME) service $(JAIL_NAME) start"
@@ -126,6 +130,11 @@ dns-fix:
@echo "=== New jail DNS ==="
$(SSH) "cat /jails/$(JAIL_NAME)/etc/resolv.conf"
# ── Database Backfill ──────────────────────────────────────────────────────────
backfill:
@echo "=== Backfilling stale usernames ==="
$(SSH) "sh -s" < scripts/backfill-usernames.sh
clean:
rm -f $(BINARY)
go clean