Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion application/single_app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
EXECUTOR_TYPE = 'thread'
EXECUTOR_MAX_WORKERS = 30
SESSION_TYPE = 'filesystem'
VERSION = "0.250.194"
VERSION = "0.250.195"
IS_DEVELOPMENT = is_development_env_enabled()

SESSION_COOKIE_SAMESITE = os.getenv('SESSION_COOKIE_SAMESITE', 'Lax')
Expand Down
37 changes: 32 additions & 5 deletions application/single_app/static/js/admin/admin_sidebar_nav.js
Original file line number Diff line number Diff line change
Expand Up @@ -184,25 +184,40 @@
'gpt-config': 'gpt-configuration',
'embeddings-config': 'embeddings-configuration',
'image-config': 'image-generation-configuration',
'multi-endpoint-configuration': 'multi-endpoint-configuration',
'document-action-capabilities-card': 'document-action-capabilities-card',
'agents-config': 'agents-configuration',
'agent-template-approvals-section': 'agent-template-approvals-section',

Check warning on line 190 in application/single_app/static/js/admin/admin_sidebar_nav.js

View workflow job for this annotation

GitHub Actions / malicious-pr-security-review

Important - Changed line contains AI, plugin, agent, or workspace boundary marker. Recommendation%3A Check whether prompts, chat history, uploaded documents, embeddings, citations, settings, or identity can cross a new boundary.
'actions-config': 'actions-configuration',
// Governance tab sections
'governance-feature-toggles-section': 'governance-feature-toggles-section',
'governance-mcp-destination-section': 'governance-mcp-destination-section',
'governance-inbound-mcp-section': 'governance-inbound-mcp-section',
'governance-feature-policies-section': 'governance-feature-policies-section',
'governance-item-policies-section': 'governance-item-policies-section',
// General tab sections
'branding-section': 'branding-section',
'home-page-text-section': 'home-page-text-section',
'appearance-section': 'appearance-section',
'classification-banner-section': 'classification-banner-section',
'ai-notice-section': 'ai-notice-section',
'terms-of-use-section': 'terms-of-use-section',
'custom-pages-section': 'custom-pages-section',
'external-links-section': 'external-links-section',
'health-check-section': 'health-check-section',
'system-settings-section': 'system-settings-section',
'control-center-admin-section': 'control-center-admin-section',
// Control Center tab sections
'control-center-auto-refresh-section': 'control-center-auto-refresh-section',
'control-center-overview-section': 'control-center-overview-section',
// Logging tab sections
'application-insights-section': 'application-insights-section',
'debug-logging-section': 'debug-logging-section',
'file-processing-logs-section': 'file-processing-logs-section',
// Scale tab sections
'redis-cache-section': 'redis-cache-section',
'redis-monitoring-section': 'redis-monitoring-section',
'conversation-cache-section': 'conversation-cache-section',

Check warning on line 220 in application/single_app/static/js/admin/admin_sidebar_nav.js

View workflow job for this annotation

GitHub Actions / malicious-pr-security-review

Important - Changed line contains AI, plugin, agent, or workspace boundary marker. Recommendation%3A Check whether prompts, chat history, uploaded documents, embeddings, citations, settings, or identity can cross a new boundary.
'document-access-index-section': 'document-access-index-section',
'cosmos-maintenance-section': 'cosmos-maintenance-section',
'cosmos-throughput-section': 'cosmos-throughput-section',
Expand All @@ -213,14 +228,19 @@
'group-workspaces-section': 'group-workspaces-section',
'public-workspaces-section': 'public-workspaces-section',
'file-sharing-section': 'file-sharing-section',
'file-download-settings-section': 'file-download-settings-section',
'chat-file-uploads-section': 'chat-file-uploads-section',
'metadata-extraction-section': 'metadata-extraction-section',
'multimodal-vision-section': 'multimodal-vision-section',
'document-classification-section': 'document-classification-section',
'workspace-scope-lock-section': 'workspace-scope-lock-section',
// Citations tab sections
'standard-citations-section': 'standard-citations-section',
'enhanced-citations-section': 'enhanced-citations-section',
// Safety tab sections
'content-safety-section': 'content-safety-section',
'user-feedback-section': 'user-feedback-section',
'desktop-notifications-section': 'desktop-notifications-section',
'permissions-section': 'permissions-section',
'conversation-archiving-section': 'conversation-archiving-section',
// Security tab sections
Expand All @@ -237,9 +257,13 @@
'data-management-jobs-section': 'data-management-jobs-section',
// Search & Extract tab sections
'web-search-section': 'web-search-foundry-section',
'url-access-section': 'url-access-section',
'source-review-section': 'source-review-section',
'azure-ai-search-section': 'azure-ai-search-section',
'document-intelligence-section': 'document-intelligence-section',
'multimedia-support-section': 'multimedia-support-section'
'chunk-size-section': 'chunk-size-section',
'video-intelligence-section': 'video-intelligence-section',
'ai-voice-chat-section': 'ai-voice-chat-section'
};

const targetElementId = sectionMap[sectionId] || sectionId;
Expand Down Expand Up @@ -420,12 +444,15 @@
if (!hasResults && searchTerm) {
const adminSection = document.getElementById('admin-settings-section');
const noResultsDiv = document.createElement('div');
const searchIcon = document.createElement('i');

Check warning on line 447 in application/single_app/static/js/admin/admin_sidebar_nav.js

View workflow job for this annotation

GitHub Actions / malicious-pr-security-review

Important - Changed line contains secret or sensitive data source marker. Recommendation%3A Pair this source with any nearby network, logging, serialization, or process execution sink before approving.
const message = document.createElement('span');

noResultsDiv.id = 'admin-search-no-results';
noResultsDiv.className = 'px-3 py-2 text-muted text-center small';
noResultsDiv.innerHTML = `
<i class="bi bi-search me-1"></i>
No settings found for "${searchTerm}"
`;
searchIcon.className = 'bi bi-search me-1';

Check warning on line 452 in application/single_app/static/js/admin/admin_sidebar_nav.js

View workflow job for this annotation

GitHub Actions / malicious-pr-security-review

Important - Changed line contains secret or sensitive data source marker. Recommendation%3A Pair this source with any nearby network, logging, serialization, or process execution sink before approving.
searchIcon.setAttribute('aria-hidden', 'true');

Check warning on line 453 in application/single_app/static/js/admin/admin_sidebar_nav.js

View workflow job for this annotation

GitHub Actions / malicious-pr-security-review

Moderate - Changed line contains obfuscation, dynamic loading, or hidden payload marker. Recommendation%3A Confirm the changed code is not hiding behavior, decoding payloads, or bypassing normal review.

Check warning on line 453 in application/single_app/static/js/admin/admin_sidebar_nav.js

View workflow job for this annotation

GitHub Actions / malicious-pr-security-review

Important - Changed line contains secret or sensitive data source marker. Recommendation%3A Pair this source with any nearby network, logging, serialization, or process execution sink before approving.
message.textContent = `No settings found for "${searchTerm}"`;

Check warning on line 454 in application/single_app/static/js/admin/admin_sidebar_nav.js

View workflow job for this annotation

GitHub Actions / malicious-pr-security-review

Important - Changed line contains secret or sensitive data source marker. Recommendation%3A Pair this source with any nearby network, logging, serialization, or process execution sink before approving.
noResultsDiv.append(searchIcon, message);

Check warning on line 455 in application/single_app/static/js/admin/admin_sidebar_nav.js

View workflow job for this annotation

GitHub Actions / malicious-pr-security-review

Important - Changed line contains secret or sensitive data source marker. Recommendation%3A Pair this source with any nearby network, logging, serialization, or process execution sink before approving.
adminSection.appendChild(noResultsDiv);
}
}
Expand Down
Loading
Loading