mirror of
https://github.com/status-im/open-bounty.git
synced 2025-01-13 02:55:18 +00:00
d35b794ca4
Secure Github webhooks (Fixes #18) * Use a unique random secret for webhooks * Validate payload signature when receiving webhook Make enabling + disabling a repo more robust * store repository state instead of enabled flag in DB * atomic toggle UI button (Fixes #17) New UX for managing repos * group repos by owner * look and feel according to UI spec General improvements * only request user's repos via Github API once per session * fix issue with cljs code figwheel reload * simplify app-db structure
15 lines
351 B
Clojure
15 lines
351 B
Clojure
(ns ^:figwheel-no-load commiteth.app
|
|
(:require [commiteth.core :as core]
|
|
[devtools.core :as devtools]
|
|
[figwheel.client :as figwheel :include-macros true]))
|
|
|
|
(enable-console-print!)
|
|
|
|
(figwheel/watch-and-reload
|
|
:websocket-url "ws://localhost:3449/figwheel-ws"
|
|
:on-jsload core/on-js-load)
|
|
|
|
(devtools/install!)
|
|
|
|
(core/init!)
|