Skip to content
Snippets Groups Projects
Commit 58e5d843 authored by Gunnar Schaefer's avatar Gunnar Schaefer
Browse files

fix bootstrapping of "unknown" group

parent 6c9849f2
No related branches found
No related tags found
No related merge requests found
......@@ -90,7 +90,7 @@ def dbinit(args):
for u in db.users.find():
db.users.update({'_id': u['_id']}, {'$set': {'email_hash': hashlib.md5(u['email']).hexdigest()}})
db.groups.update({'_id': 'unknown'}, {'$set': {'_id': 'unknown'}}, upsert=True)
db.groups.update({'_id': 'unknown'}, {'$setOnInsert': {'name': 'Unknown', 'roles': []}}, upsert=True)
dbinit_desc = """
example:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment