mirror of
https://github.com/simple-login/app.git
synced 2024-11-17 17:35:20 +01:00
Fix custom domain has been added before
This commit is contained in:
parent
5d25310105
commit
ee3c75244e
1 changed files with 18 additions and 12 deletions
|
@ -31,12 +31,18 @@ def custom_domain():
|
||||||
if request.method == "POST":
|
if request.method == "POST":
|
||||||
if request.form.get("form-name") == "create":
|
if request.form.get("form-name") == "create":
|
||||||
if new_custom_domain_form.validate():
|
if new_custom_domain_form.validate():
|
||||||
|
new_domain = new_custom_domain_form.domain.data
|
||||||
|
if CustomDomain.get_by(domain=new_domain):
|
||||||
|
flash(f"{new_domain} already added", "warning")
|
||||||
|
else:
|
||||||
new_custom_domain = CustomDomain.create(
|
new_custom_domain = CustomDomain.create(
|
||||||
domain=new_custom_domain_form.domain.data, user_id=current_user.id
|
domain=new_domain, user_id=current_user.id
|
||||||
)
|
)
|
||||||
db.session.commit()
|
db.session.commit()
|
||||||
|
|
||||||
flash(f"New domain {new_custom_domain.domain} is created", "success")
|
flash(
|
||||||
|
f"New domain {new_custom_domain.domain} is created", "success"
|
||||||
|
)
|
||||||
|
|
||||||
return redirect(
|
return redirect(
|
||||||
url_for(
|
url_for(
|
||||||
|
|
Loading…
Reference in a new issue