def response_allow_publish_senate(question):
    """question: Require that the event response has been reviewed.
    """
    return child_in_state(question, "senate_event_response", "reviewed")
Beispiel #2
0
def response_allow_publish_senate(question):
    """question: Require that the event response has been reviewed.
    """
    return child_in_state(question, "senate_event_response", "reviewed")
def response_allow_submit_senate(question):
    """question: Require that the event response has been completed.
    """
    return child_in_state(question, "senate_event_response", "completed")
Beispiel #4
0
def response_allow_submit_senate(question):
    """question: Require that the event response has been completed.
    """
    return child_in_state(question, "senate_event_response", "completed")