mirror of
https://github.com/penpot/penpot.git
synced 2025-03-30 00:21:19 -05:00
✨ Minor fixes.
This commit is contained in:
parent
5b9c596170
commit
15545d0b2f
4 changed files with 2 additions and 13 deletions
|
@ -83,7 +83,7 @@
|
||||||
:fullname (str "Profile " index)
|
:fullname (str "Profile " index)
|
||||||
:password "123123"
|
:password "123123"
|
||||||
:demo? true
|
:demo? true
|
||||||
:email (str "profile" index ".test@penpot.io")})
|
:email (str "profile" index ".test@penpot.app")})
|
||||||
team-id (:default-team-id prof)
|
team-id (:default-team-id prof)
|
||||||
owner-id id]
|
owner-id id]
|
||||||
(let [project-ids (collect (partial create-project conn team-id owner-id)
|
(let [project-ids (collect (partial create-project conn team-id owner-id)
|
||||||
|
|
|
@ -28,16 +28,6 @@
|
||||||
(println "******** end email "(:id email) "**********"))]
|
(println "******** end email "(:id email) "**********"))]
|
||||||
(log/info out))))
|
(log/info out))))
|
||||||
|
|
||||||
(defn adapt-config
|
|
||||||
[cfg]
|
|
||||||
{:host (:smtp-host cfg "localhost")
|
|
||||||
:port (:smtp-port cfg 25)
|
|
||||||
:default-reply-to (:smtp-default-reply-to cfg)
|
|
||||||
:default-from (:smtp-default-from cfg)
|
|
||||||
:tls (:smtp-tls cfg)
|
|
||||||
:username (:smtp-username cfg)
|
|
||||||
:password (:smtp-password cfg)})
|
|
||||||
|
|
||||||
(defn handler
|
(defn handler
|
||||||
{:app.tasks/name "sendmail"}
|
{:app.tasks/name "sendmail"}
|
||||||
[{:keys [props] :as task}]
|
[{:keys [props] :as task}]
|
||||||
|
|
|
@ -172,7 +172,6 @@
|
||||||
[{:keys [debug] :or {debug false} :as opts}]
|
[{:keys [debug] :or {debug false} :as opts}]
|
||||||
(let [props (opts->props opts)
|
(let [props (opts->props opts)
|
||||||
session (Session/getInstance props)]
|
session (Session/getInstance props)]
|
||||||
(prn "kaka" props)
|
|
||||||
(.setDebug session debug)
|
(.setDebug session debug)
|
||||||
session))
|
session))
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@ LABEL maintainer="Andrey Antukh <niwi@niwi.nz>"
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
ARG EXTERNAL_UID=1000
|
ARG EXTERNAL_UID=1000
|
||||||
|
|
||||||
ENV NODE_VERSION=v12.19.0 \
|
ENV NODE_VERSION=v14.15.0 \
|
||||||
CLOJURE_VERSION=1.10.1.727 \
|
CLOJURE_VERSION=1.10.1.727 \
|
||||||
LANG=en_US.UTF-8 \
|
LANG=en_US.UTF-8 \
|
||||||
LC_ALL=en_US.UTF-8
|
LC_ALL=en_US.UTF-8
|
||||||
|
|
Loading…
Add table
Reference in a new issue