def delete(cls, context, action_id): """Delete an action from database. :param context: An instance of the request context. :param action_id: The UUID of the target action to be deleted. :return: Nothing. """ db_api.action_delete(context, action_id)
def delete(cls, context, action_id): db_api.action_delete(context, action_id)
def delete(cls, context, action_id, force=False): db_api.action_delete(context, action_id, force)