Files
agentic-soc-platform/backend/apps/settings/custom_variables.py
T

10 lines
205 B
Python

from .models import CustomVariable
def get_custom_variable(key):
return (
CustomVariable.objects.filter(key=key, enabled=True)
.values_list("value", flat=True)
.first()
)