Skip to content

Commit 84144f0

Browse files
DarMontouDarMontou
DarMontou
authored and
DarMontou
committed
send info to websocket on connect -> host & path
1 parent edc929c commit 84144f0

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src-cljs/chatb0x/core.cljs

+1
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@
6666

6767
(set! (.-onopen socket)
6868
(fn [event]
69+
(.send socket {:new-path path :new-host host})
6970
(println "WebSocket connected. Destination: " ws-url)))
7071

7172
;; The keys are all ints, so sort them such that :10 > :2

src/chatb0x/core.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@
185185
:credential-fn #(creds/bcrypt-credential-fn @users %)
186186
:workflows [(workflows/interactive-form)]})
187187
; required Ring middlewares
188-
(wrap-verbose) ; log the request map
188+
;;(wrap-verbose) ; log the request map
189189
(wrap-reload)
190190
(wrap-drop-www)
191191
(wrap-keyword-params)

0 commit comments

Comments
 (0)