Skip to content

Commit 190f46c

Browse files
author
awb99
committed
frontend.core
1 parent 44b6365 commit 190f46c

File tree

4 files changed

+3
-7
lines changed

4 files changed

+3
-7
lines changed

build.clj

+1-4
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,10 @@
1313

1414
(defn jar "build the JAR" [opts]
1515
(println "Building the JAR")
16-
#_(spit (doto (fs/file "resources/META-INF/pink-gorilla/webly3/meta.edn")
17-
(-> fs/parent fs/create-dirs)) {:module-name "rest"
18-
:version version})
1916
(-> opts
2017
(assoc :lib lib
2118
:version version
22-
:src-pom "template/pom.xml"
19+
:src-pom "pom-template.xml"
2320
:transitive true)
2421
;(bb/run-tests)
2522
;(bb/clean)

template/pom.xml pom-template.xml

File renamed without changes.

resources/ext/oauth2.edn

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
:lazy false
44
:cljs-namespace [modular.oauth2.token.ui
55
modular.oauth2.user.view
6-
modular.oauth2 ; side effects (webly.app.cljs)
7-
]
6+
modular.oauth2]
87
:cljs-ns-bindings {'modular.oauth2 {'provider-status-grid modular.oauth2.token.ui/provider-status-grid
98
'user-login modular.oauth2.user.view/user-login}
109
; make sure the namespaces in sci and cljs are identical

src/modular/oauth2/request.cljs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[clojure.string :as str]
55
[ajax.core :as ajax]
66
[re-frame.core :as rf]
7-
[frontend.notifications.core :refer [add-notification]]
7+
[frontend.notification :refer [show-notification]]
88
[modular.oauth2.provider :refer [get-provider-auth-header]]))
99

1010
;'authorization: Bearer YOUR_ACCESS_TOKEN'

0 commit comments

Comments
 (0)