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.
17 lines
483 B
17 lines
483 B
# Copyright (C) 2005-2025 Splunk Inc. All Rights Reserved.
|
|
|
|
from ITOA.itoa_object import ItoaObject
|
|
from ITOA.setup_logging import logger
|
|
|
|
|
|
class ItsiSavedPage(ItoaObject):
|
|
'''
|
|
Implements ITSI Saved Page
|
|
'''
|
|
|
|
log_prefix = '[ITSI Saved Page] '
|
|
|
|
def __init__(self, session_key, current_user_name):
|
|
super(ItsiSavedPage, self).__init__(session_key, current_user_name, 'saved_page',
|
|
title_validation_required=False)
|