web: only show applications with http link

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer
2021-11-23 22:40:31 +01:00
parent 9c9c00755a
commit 8794c840cf
2 changed files with 5 additions and 4 deletions

View File

@ -31,9 +31,8 @@ def create_test_admin_user(name: Optional[str] = None, set_password=False) -> Us
name=uid,
email=f"{uid}@goauthentik.io",
)
if set_password:
user.set_password(uid)
user.save()
user.set_password(uid)
user.save()
group.users.add(user)
return user