File tree Expand file tree Collapse file tree 4 files changed +5
-4
lines changed
Expand file tree Collapse file tree 4 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1- env /
1+ venv /
22__pycache__ /
33.git
44frontend /node_modules
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ ADD .env .
66RUN export $(cat .env | xargs)
77RUN npm run build
88
9- FROM python:3.7.7 -buster
9+ FROM python:3.8.3 -buster
1010WORKDIR /www
1111ADD backend .
1212ADD .env .
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ def request_new_email_conf():
246246 else :
247247 if u .is_confirmed :
248248 current_app .logger .debug ("/auth/confirm/new -> User found, Already confirmed." )
249- pass
249+ return Success ( "User already confirmed" )
250250 else :
251251 current_app .logger .debug ("/auth/confirm/new -> User found, sending new confirmation email" )
252252 token = generate_confirmation_token (email = email , token_type = "confirm" )
Original file line number Diff line number Diff line change @@ -25,4 +25,5 @@ black==19.10b0
2525pre-commit == 2.4.0
2626
2727names == 0.3.0
28- lorem == 0.1.1
28+ lorem == 0.1.1
29+ future
You can’t perform that action at this time.
0 commit comments