status-map icon indicating copy to clipboard operation
status-map copied to clipboard

Status map and transitions validation made easy

Results 4 status-map issues
Sort by recently updated
recently updated
newest added

not sure how this would look, but I can see people that already use enums for "status handling" (or similar stuff) wanting the features status map provides. we might tackle...

it would be great if when working with django we could do something like: ```python from status_map.django import StatusField class Task(Model): status = StatusField(status_map={'todo': ['doing'], 'doing': ['todo', 'done'], 'done': []})...

it would be nice to have a `StatusMap.draw()` method that gave us a way to view the status map. it could start with ascii art, but we also could add...

so we won't forget to create and push release tags