Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
open-webui
Commits
943c49a0
"git@developer.sourcefind.cn:chenpangpang/open-webui.git" did not exist on "e92311b4eb7ea19dacbe74224406e9d7035d72b3"
Unverified
Commit
943c49a0
authored
May 08, 2024
by
Timothy Jaeryang Baek
Committed by
GitHub
May 08, 2024
Browse files
Merge pull request #2116 from open-webui/dev
fix
parents
78c2f16c
88e8f31c
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
25 additions
and
17 deletions
+25
-17
backend/apps/web/routers/auths.py
backend/apps/web/routers/auths.py
+3
-1
backend/config.py
backend/config.py
+22
-16
No files found.
backend/apps/web/routers/auths.py
View file @
943c49a0
...
@@ -131,7 +131,9 @@ async def signin(request: Request, form_data: SigninForm):
...
@@ -131,7 +131,9 @@ async def signin(request: Request, form_data: SigninForm):
request
,
request
,
SignupForm
(
email
=
admin_email
,
password
=
admin_password
,
name
=
"User"
),
SignupForm
(
email
=
admin_email
,
password
=
admin_password
,
name
=
"User"
),
)
)
user
=
Auths
.
authenticate_user
(
admin_email
.
lower
(),
admin_password
)
user
=
Auths
.
authenticate_user
(
admin_email
.
lower
(),
admin_password
)
else
:
else
:
user
=
Auths
.
authenticate_user
(
form_data
.
email
.
lower
(),
form_data
.
password
)
user
=
Auths
.
authenticate_user
(
form_data
.
email
.
lower
(),
form_data
.
password
)
...
@@ -161,7 +163,7 @@ async def signin(request: Request, form_data: SigninForm):
...
@@ -161,7 +163,7 @@ async def signin(request: Request, form_data: SigninForm):
@
router
.
post
(
"/signup"
,
response_model
=
SigninResponse
)
@
router
.
post
(
"/signup"
,
response_model
=
SigninResponse
)
async
def
signup
(
request
:
Request
,
form_data
:
SignupForm
):
async
def
signup
(
request
:
Request
,
form_data
:
SignupForm
):
if
not
request
.
app
.
state
.
ENABLE_SIGNUP
:
if
not
request
.
app
.
state
.
ENABLE_SIGNUP
and
WEBUI_AUTH
:
raise
HTTPException
(
raise
HTTPException
(
status
.
HTTP_403_FORBIDDEN
,
detail
=
ERROR_MESSAGES
.
ACCESS_PROHIBITED
status
.
HTTP_403_FORBIDDEN
,
detail
=
ERROR_MESSAGES
.
ACCESS_PROHIBITED
)
)
...
...
backend/config.py
View file @
943c49a0
...
@@ -154,6 +154,23 @@ for version in soup.find_all("h2"):
...
@@ -154,6 +154,23 @@ for version in soup.find_all("h2"):
CHANGELOG
=
changelog_json
CHANGELOG
=
changelog_json
####################################
# WEBUI_VERSION
####################################
WEBUI_VERSION
=
os
.
environ
.
get
(
"WEBUI_VERSION"
,
"v1.0.0-alpha.100"
)
####################################
# WEBUI_AUTH (Required for security)
####################################
WEBUI_AUTH
=
os
.
environ
.
get
(
"WEBUI_AUTH"
,
"True"
).
lower
()
==
"true"
WEBUI_AUTH_TRUSTED_EMAIL_HEADER
=
os
.
environ
.
get
(
"WEBUI_AUTH_TRUSTED_EMAIL_HEADER"
,
None
)
####################################
####################################
# DATA/FRONTEND BUILD DIR
# DATA/FRONTEND BUILD DIR
####################################
####################################
...
@@ -346,7 +363,11 @@ OPENAI_API_BASE_URL = "https://api.openai.com/v1"
...
@@ -346,7 +363,11 @@ OPENAI_API_BASE_URL = "https://api.openai.com/v1"
# WEBUI
# WEBUI
####################################
####################################
ENABLE_SIGNUP
=
os
.
environ
.
get
(
"ENABLE_SIGNUP"
,
"True"
).
lower
()
==
"true"
ENABLE_SIGNUP
=
(
False
if
WEBUI_AUTH
==
False
else
os
.
environ
.
get
(
"ENABLE_SIGNUP"
,
"True"
).
lower
()
==
"true"
)
DEFAULT_MODELS
=
os
.
environ
.
get
(
"DEFAULT_MODELS"
,
None
)
DEFAULT_MODELS
=
os
.
environ
.
get
(
"DEFAULT_MODELS"
,
None
)
...
@@ -403,21 +424,6 @@ WEBHOOK_URL = os.environ.get("WEBHOOK_URL", "")
...
@@ -403,21 +424,6 @@ WEBHOOK_URL = os.environ.get("WEBHOOK_URL", "")
ENABLE_ADMIN_EXPORT
=
os
.
environ
.
get
(
"ENABLE_ADMIN_EXPORT"
,
"True"
).
lower
()
==
"true"
ENABLE_ADMIN_EXPORT
=
os
.
environ
.
get
(
"ENABLE_ADMIN_EXPORT"
,
"True"
).
lower
()
==
"true"
####################################
# WEBUI_VERSION
####################################
WEBUI_VERSION
=
os
.
environ
.
get
(
"WEBUI_VERSION"
,
"v1.0.0-alpha.100"
)
####################################
# WEBUI_AUTH (Required for security)
####################################
WEBUI_AUTH
=
os
.
environ
.
get
(
"WEBUI_AUTH"
,
"True"
).
lower
()
==
"true"
WEBUI_AUTH_TRUSTED_EMAIL_HEADER
=
os
.
environ
.
get
(
"WEBUI_AUTH_TRUSTED_EMAIL_HEADER"
,
None
)
####################################
####################################
# WEBUI_SECRET_KEY
# WEBUI_SECRET_KEY
####################################
####################################
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment