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
697 B
21 lines
697 B
# Copyright (C) 2005-2025 Splunk Inc. All Rights Reserved.
|
|
|
|
from ITOA.itoa_object import ItoaObject
|
|
from ITOA.setup_logging import logger
|
|
|
|
|
|
class ItsiGlassTable(ItoaObject):
|
|
'''
|
|
Implements ITSI Glass Table
|
|
'''
|
|
|
|
log_prefix = '[ITSI Glass Table] '
|
|
collection_name = 'itsi_pages'
|
|
|
|
def __init__(self, session_key, current_user_name):
|
|
super(ItsiGlassTable, self).__init__(session_key,
|
|
current_user_name,
|
|
'glass_table',
|
|
collection_name=self.collection_name,
|
|
title_validation_required=False)
|