Discoverable actor parameter

main
Bob Mottram 2020-12-17 22:59:11 +00:00
parent 0c9d753c22
commit 57156455d9
1 changed files with 3 additions and 1 deletions

View File

@ -190,7 +190,8 @@ def getDefaultPersonContext() -> str:
'identityKey': {'@id': 'toot:identityKey', '@type': '@id'},
'fingerprintKey': {'@id': 'toot:fingerprintKey', '@type': '@id'},
'messageFranking': 'toot:messageFranking',
'publicKeyBase64': 'toot:publicKeyBase64'
'publicKeyBase64': 'toot:publicKeyBase64',
'discoverable': 'toot:discoverable'
}
@ -279,6 +280,7 @@ def createPersonBase(baseDir: str, nickname: str, domain: str, port: int,
},
'inbox': inboxStr,
'manuallyApprovesFollowers': approveFollowers,
'discoverable': False,
'name': personName,
'outbox': personId+'/outbox',
'preferredUsername': personName,