feat: rename app provider to application provider across codebase and update terminology

This commit is contained in:
mik-tf
2025-09-07 10:23:01 -04:00
parent 63c0e936d6
commit 988d07a10d
21 changed files with 86 additions and 86 deletions

View File

@@ -566,7 +566,7 @@ document.addEventListener('DOMContentLoaded', function() {
}
// Load app provider data via apiJson
window.apiJson('/api/dashboard/app-provider-data', { cache: 'no-store' })
window.apiJson('/api/dashboard/application-provider-data', { cache: 'no-store' })
.then(data => {
window.__appProviderDashboard = new window.AppProviderDashboard(data || {});
})

View File

@@ -508,7 +508,7 @@ class DashboardMessaging {
const colors = {
'service_booking': 'primary',
'slice_rental': 'success',
'app_deployment': 'info',
'application_deployment': 'info',
'general': 'secondary',
'support': 'warning'
};

View File

@@ -146,7 +146,7 @@ class DemoWorkflow {
showNotification('Demo: Navigating to App Provider dashboard...', 'info');
setTimeout(() => {
if (window.location.pathname !== '/dashboard/app-provider') {
if (window.location.pathname !== '/dashboard/application-provider') {
showNotification('Please navigate to the App Provider dashboard to continue the demo', 'warning');
return;
}