Exemple #1
0
def get_status(status_id):
    """
    Return the status name by status id
    """
    return data_handler.get_card_status(status_id)
Exemple #2
0
def get_status(status_id: int):
    """
    All the boards
    """
    return data_handler.get_card_status(status_id)
Exemple #3
0
def get_card_status(status_id: int):
    return data_handler.get_card_status(status_id)
Exemple #4
0
def get_statuses():
    """
    All cards that belongs to a board
    :param board_id: id of the parent board
    """
    return data_handler.get_card_status()