mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
14 lines
279 B
Python
14 lines
279 B
Python
class CurrentUser(object):
|
|
def __init__(self):
|
|
pass
|
|
|
|
@staticmethod
|
|
def list(user=None):
|
|
current_info = {
|
|
'name': user.username,
|
|
'currentAuthority': 'admin',
|
|
'userid': user.id,
|
|
}
|
|
|
|
return current_info
|