Skip to content
Snippets Groups Projects
Forked from DM / dm-docs
261 commits behind, 832 commits ahead of the upstream repository.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
workflow.py 200 B
#!/usr/bin/env python

from dmObject import DmObject

class Workflow(DmObject):

    DEFAULT_KEY_LIST = [ 'id', 'name', 'owner' ]

    def __init__(self, dict):
        DmObject.__init__(self, dict)