@@ -356,7 +356,7 @@ def fetch_job() -> Any:
356
356
@app .route ("/rest/v1/standards" , methods = ["GET" ])
357
357
def standards () -> Any :
358
358
if posthog :
359
- posthog .capture (f"standards" )
359
+ posthog .capture (f"standards" , "" )
360
360
361
361
database = db .Node_collection ()
362
362
standards = database .standards ()
@@ -407,7 +407,7 @@ def find_root_cres() -> Any:
407
407
408
408
"""
409
409
if posthog :
410
- posthog .capture (f"find_root_cres" )
410
+ posthog .capture (f"find_root_cres" , "" )
411
411
412
412
database = db .Node_collection ()
413
413
# opt_osib = request.args.get("osib")
@@ -590,7 +590,7 @@ def login_r(*args, **kwargs):
590
590
def chat_cre () -> Any :
591
591
message = request .get_json (force = True )
592
592
if posthog :
593
- posthog .capture (f"chat_cre" )
593
+ posthog .capture (f"chat_cre" , "" )
594
594
595
595
database = db .Node_collection ()
596
596
prompt = prompt_client .PromptHandler (database )
@@ -709,7 +709,7 @@ def logout():
709
709
def all_cres () -> Any :
710
710
database = db .Node_collection ()
711
711
if posthog :
712
- posthog .capture (f"all_cres" )
712
+ posthog .capture (f"all_cres" , "" )
713
713
714
714
page = 1
715
715
per_page = ITEMS_PER_PAGE
@@ -735,7 +735,7 @@ def all_cres() -> Any:
735
735
@app .route ("/rest/v1/cre_csv" , methods = ["GET" ])
736
736
def get_cre_csv () -> Any :
737
737
if posthog :
738
- posthog .capture (f"get_cre_csv" )
738
+ posthog .capture (f"get_cre_csv" , "" )
739
739
740
740
database = db .Node_collection ()
741
741
root_cres = database .get_root_cres ()
0 commit comments