openreplay/api/chalicelib/core/license.py
Taha Yassine Kraiem 06a52e505e feat(api): fixed edition
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
2022-06-17 10:42:29 +02:00

9 lines
158 B
Python

EDITION = 'foss'
def get_status(tenant_id=None):
return {
"hasActivePlan": True,
"edition": EDITION,
"expirationDate": -1
}