feat: Se crean estados autollenados al seguimiento de prospecto (open, with_pending_calls)
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2023-08-08 15:56:01 -05:00
parent e16e1c6d90
commit ce71b0c932
3 changed files with 33 additions and 4 deletions

View File

@@ -0,0 +1,10 @@
class ProspectTraceStates():
@staticmethod
def get_prospect_trace_states():
states = [
('unassigned', 'Unassigned'),
('open', 'Open'),
('with_pending_calls', 'With pending calls'),
('closed', 'Closed')
]
return states