Generate private key on startup

This commit is contained in:
Evan Cordell 2016-04-27 13:39:01 -05:00 committed by Jimmy Zelinskie
parent 85667a9cf6
commit 668ce2c7cd
5 changed files with 41 additions and 3 deletions

View file

@ -142,6 +142,8 @@ def org_view(org):
}
def user_view(user, password=None):
if user is None:
return None
user_data = {
'kind': 'user',
'name': user.username,