jcloude/press/saas/api/team.py
2025-12-23 19:23:49 +08:00

14 lines
335 B
Python

# -*- coding: utf-8 -*-
# Copyright (c) 2020, Frappe and contributors
# For license information, please see license.txt
import frappe
from press.saas.api import whitelist_saas_api
from time import sleep
@whitelist_saas_api
def info():
team = frappe.local.get_team()
data = team.as_dict()
team.get_pg(data)
return data