mirror of https://github.com/MISP/PyMISP
feature: Add support for authkey in PyMISP operations
parent
9a7961e0a3
commit
03a16fefef
|
@ -1187,6 +1187,8 @@ class PyMISP(object):
|
|||
user['termsaccepted'] = kwargs.get('termsaccepted')
|
||||
if kwargs.get('newsread'):
|
||||
user['newsread'] = kwargs.get('newsread')
|
||||
if kwargs.get('authkey'):
|
||||
user['authkey'] = kwargs.get('authkey')
|
||||
return user
|
||||
|
||||
def get_users_list(self):
|
||||
|
|
Loading…
Reference in New Issue