feat(api): fixed expiration date feat(api): fixed change name feat(api): fixed change role feat(api): fixed has password feat(api): refactored edit user feat(api): refactored edit member
9 lines
158 B
Python
9 lines
158 B
Python
EDITION = 'foss'
|
|
|
|
|
|
def get_status(tenant_id=None):
|
|
return {
|
|
"hasActivePlan": True,
|
|
"edition": EDITION,
|
|
"expirationDate": -1
|
|
}
|