You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
679 B

# Copyright (C) 2005-2024 Splunk Inc. All Rights Reserved.
from ITOA.itoa_object import ItoaObject
from ITOA.setup_logging import logger
class ItsiDeepDive(ItoaObject):
'''
Implements ITSI Deep Dive
'''
log_prefix = '[ITSI Deep Dive] '
collection_name = 'itsi_pages'
def __init__(self, session_key, current_user_name):
super(ItsiDeepDive, self).__init__(session_key,
current_user_name,
'deep_dive',
collection_name=self.collection_name,
title_validation_required=False)