mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
18 lines
361 B
Python
18 lines
361 B
Python
# -*- coding: utf-8 -*-
|
|
# @File : currentuser.py
|
|
# @Date : 2021/2/25
|
|
# @Desc :
|
|
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
|