コード例 #1
0
ファイル: board.py プロジェクト: CoCornell/CoCornell
def board_count():
    """
    Returns number of boards the user has access to.
    """
    count = Board.get_board_count_by_netid(g.user.netid)
    return ok({'count': count})