def is_valid_board_name(name):
"""Determine if the provided name is a valid board name.
Check to see that the provided board name is valid, and isn't a UUID.
:param: name: the board name to check.
:returns: True if the name is valid, False otherwise.
"""
return utils.is_hostname_safe(name) and (not uuidutils.is_uuid_like(name))
评论列表
文章目录