mirror of
https://github.com/FunnyWolf/agentic-soc-platform.git
synced 2026-08-22 13:12:56 +02:00
10 lines
205 B
Python
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()
|
|
)
|