├── .husky └── pre-commit ├── .vscode ├── settings.json ├── extensions.json └── launch.json ├── force-app └── main │ └── default │ ├── lwc │ └── customCommunityComponent │ │ ├── customCommunityComponent.html │ │ ├── customCommunityComponent.js │ │ └── customCommunityComponent.js-meta.xml │ ├── pages │ ├── CommunitiesLogin.page │ ├── CommunitiesLanding.page │ ├── BandwidthExceeded.page │ ├── InMaintenance.page │ ├── CommunitiesLogin.page-meta.xml │ ├── CommunitiesLanding.page-meta.xml │ ├── InMaintenance.page-meta.xml │ ├── CommunitiesSelfReg.page-meta.xml │ ├── FileNotFound.page-meta.xml │ ├── BandwidthExceeded.page-meta.xml │ ├── Exception.page-meta.xml │ ├── ForgotPassword.page-meta.xml │ ├── CommunitiesSelfRegConfirm.page-meta.xml │ ├── CommunitiesSelfRegConfirm.page │ ├── FileNotFound.page │ ├── Exception.page │ ├── ForgotPassword.page │ └── CommunitiesSelfReg.page │ ├── experiences │ ├── Salto_Support1 │ │ ├── config │ │ │ ├── languages.json │ │ │ ├── loginAppPage.json │ │ │ ├── mainAppPage.json │ │ │ └── saltoSupport.json │ │ ├── routes │ │ │ ├── login.json │ │ │ ├── caseList.json │ │ │ ├── groupList.json │ │ │ ├── messages.json │ │ │ ├── topicDetail.json │ │ │ ├── userList.json │ │ │ ├── caseDetail.json │ │ │ ├── groupDetail.json │ │ │ ├── loginError.json │ │ │ ├── recordDetail.json │ │ │ ├── reportList.json │ │ │ ├── streamList.json │ │ │ ├── articleDetail.json │ │ │ ├── dashboardList.json │ │ │ ├── feedDetail.json │ │ │ ├── fileList.json │ │ │ ├── myAccount.json │ │ │ ├── register.json │ │ │ ├── reportDetail.json │ │ │ ├── streamDetail.json │ │ │ ├── userProfile.json │ │ │ ├── createRecord.json │ │ │ ├── fileDetail.json │ │ │ ├── home.json │ │ │ ├── questionDetail.json │ │ │ ├── userSettings.json │ │ │ ├── caseRelatedList.json │ │ │ ├── dashboardDetail.json │ │ │ ├── flow.json │ │ │ ├── groupRelatedList.json │ │ │ ├── reportBuilder.json │ │ │ ├── userRelatedList.json │ │ │ ├── error.json │ │ │ ├── forgotPassword.json │ │ │ ├── reportRelatedList.json │ │ │ ├── streamRelatedList.json │ │ │ ├── checkPassword.json │ │ │ ├── fileRelatedList.json │ │ │ ├── dashboardRelatedList.json │ │ │ ├── accountManagement.json │ │ │ ├── recordList.json │ │ │ ├── search.json │ │ │ ├── pabloPage.json │ │ │ ├── topArticles.json │ │ │ ├── topicCatalog.json │ │ │ ├── contactSupport.json │ │ │ ├── relatedRecordList.json │ │ │ ├── quipDocsRelatedList.json │ │ │ ├── serviceNotAvailable.json │ │ │ └── tooManyRequests.json │ │ ├── variations │ │ │ └── homeAskButtonComponent.json │ │ ├── views │ │ │ ├── userList.json │ │ │ ├── streamRelatedList.json │ │ │ ├── messages.json │ │ │ ├── streamList.json │ │ │ ├── reportList.json │ │ │ ├── dashboardList.json │ │ │ ├── fileDetail.json │ │ │ ├── fileList.json │ │ │ ├── streamDetail.json │ │ │ ├── feedDetail.json │ │ │ ├── reportBuilder.json │ │ │ ├── createRecord.json │ │ │ ├── flow.json │ │ │ ├── quipDocsRelatedList.json │ │ │ ├── caseRelatedList.json │ │ │ ├── fileRelatedList.json │ │ │ ├── groupRelatedList.json │ │ │ ├── relatedRecordList.json │ │ │ ├── userRelatedList.json │ │ │ ├── reportRelatedList.json │ │ │ ├── dashboardRelatedList.json │ │ │ ├── serviceNotAvailable.json │ │ │ ├── groupList.json │ │ │ ├── search.json │ │ │ ├── caseList.json │ │ │ ├── recordList.json │ │ │ ├── error.json │ │ │ ├── loginError.json │ │ │ ├── tooManyRequests.json │ │ │ ├── groupDetail.json │ │ │ ├── userProfile.json │ │ │ ├── userSettings.json │ │ │ ├── topArticles.json │ │ │ ├── caseDetail.json │ │ │ ├── recordDetail.json │ │ │ ├── checkPassword.json │ │ │ ├── login.json │ │ │ ├── forgotPassword.json │ │ │ ├── reportDetail.json │ │ │ ├── dashboardDetail.json │ │ │ ├── register.json │ │ │ ├── contactSupport.json │ │ │ ├── myAccount.json │ │ │ ├── topicCatalog.json │ │ │ ├── pabloPage.json │ │ │ ├── accountManagement.json │ │ │ ├── questionDetail.json │ │ │ ├── articleDetail.json │ │ │ ├── home.json │ │ │ └── topicDetail.json │ │ ├── brandingSets │ │ │ ├── customerService.json │ │ │ └── vIPCustomersBranding.json │ │ └── themes │ │ │ └── customerService.json │ └── Salto_Support1.site-meta.xml │ ├── classes │ ├── CommunitiesLandingController.cls-meta.xml │ ├── CommunitiesLoginController.cls-meta.xml │ ├── CommunitiesSelfRegController.cls-meta.xml │ ├── CommunitiesSelfRegConfirmController.cls-meta.xml │ ├── CommunitiesSelfRegConfirmController.cls │ ├── CommunitiesLandingController.cls │ ├── CommunitiesLoginController.cls │ └── CommunitiesSelfRegController.cls │ ├── email │ └── unfiled$public │ │ ├── CommunityChangePasswordEmailTemplate.email │ │ ├── CommunityForgotPasswordEmailTemplate.email │ │ ├── CommunityWelcomeEmailTemplate.email │ │ ├── SUPPORTSelfServiceNewCommentNotificationSAMPLE.email │ │ ├── ExperienceCloudSelfRegMicroBatchSubErrorEmailTemplate.email │ │ ├── CommunityChgEmailVerOldTemplate.email │ │ ├── CommunityChgEmailVerNewTemplate.email │ │ ├── CommunityChangePasswordEmailTemplate.email-meta.xml │ │ ├── CommunityWelcomeEmailTemplate.email-meta.xml │ │ ├── CommunityForgotPasswordEmailTemplate.email-meta.xml │ │ ├── CommunityChgEmailVerOldTemplate.email-meta.xml │ │ ├── CommunityChgEmailVerNewTemplate.email-meta.xml │ │ ├── CommunityLockoutEmailTemplate.email-meta.xml │ │ ├── SUPPORTSelfServiceNewCommentNotificationSAMPLE.email-meta.xml │ │ ├── ExperienceCloudSelfRegMicroBatchSubErrorEmailTemplate.email-meta.xml │ │ └── CommunityLockoutEmailTemplate.email │ ├── navigationMenus │ └── SFDC_Default_Navigation_Salto Support.navigationMenu-meta.xml │ ├── objects │ ├── Contact │ │ └── fields │ │ │ └── OtherAccountId__c.field-meta.xml │ ├── Case │ │ └── fields │ │ │ └── Original_Deal__c.field-meta.xml │ ├── Opportunity │ │ └── fields │ │ │ └── DeliveryInstallationStatus__c.field-meta.xml │ └── Account │ │ └── fields │ │ └── CustomerPriority__c.field-meta.xml │ ├── sharingSets │ └── Share_cases_with_users.sharingSet-meta.xml │ ├── audience │ └── VIP_Customers.audience-meta.xml │ ├── managedTopics │ └── Salto Support.managedTopics-meta.xml │ ├── sites │ └── Salto_Support.site-meta.xml │ └── networks │ └── Salto Support.network-meta.xml ├── jest.config.js ├── .prettierignore ├── scripts ├── soql │ └── account.soql └── apex │ └── hello.apex ├── .prettierrc ├── sfdx-project.json ├── .eslintignore ├── config └── project-scratch-def.json ├── .forceignore ├── .gitignore ├── package.json └── manifest └── package.xml /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npm run precommit -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "search.exclude": { 3 | "**/node_modules": true, 4 | "**/bower_components": true, 5 | "**/.sfdx": true 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/customCommunityComponent/customCommunityComponent.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesLogin.page: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | const { jestConfig } = require('@salesforce/sfdx-lwc-jest/config'); 2 | 3 | module.exports = { 4 | ...jestConfig, 5 | modulePathIgnorePatterns: ['/.localdevserver'] 6 | }; 7 | -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesLanding.page: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/config/languages.json: -------------------------------------------------------------------------------- 1 | { 2 | "defaultCode" : "en_US", 3 | "defaultLabel" : "English (US)", 4 | "id" : "17ba85d2-5f27-4d9b-8f1b-bb4e7ba491aa", 5 | "type" : "languageContainer" 6 | } -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- 1 | { 2 | "recommendations": [ 3 | "salesforce.salesforcedx-vscode", 4 | "redhat.vscode-xml", 5 | "dbaeumer.vscode-eslint", 6 | "esbenp.prettier-vscode", 7 | "financialforce.lana" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/config/loginAppPage.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmsSettings" : { }, 3 | "id" : "452b995e-a758-4048-8aff-10028a252d2c", 4 | "label" : "login", 5 | "templateName" : "Login Template", 6 | "type" : "appPage" 7 | } -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # List files or directories below to ignore them when running prettier 2 | # More information: https://prettier.io/docs/en/ignore.html 3 | # 4 | 5 | **/staticresources/** 6 | .localdevserver 7 | .sfdx 8 | .vscode 9 | 10 | coverage/ -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesLandingController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesLoginController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesSelfRegController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesSelfRegConfirmController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /scripts/soql/account.soql: -------------------------------------------------------------------------------- 1 | // Use .soql files to store SOQL queries. 2 | // You can execute queries in VS Code by selecting the 3 | // query text and running the command: 4 | // SFDX: Execute SOQL Query with Currently Selected Text 5 | 6 | SELECT Id, Name FROM Account 7 | -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityChangePasswordEmailTemplate.email: -------------------------------------------------------------------------------- 1 | Hi {!Receiving_User.FirstName}, 2 | 3 | Your password has been reset for {!Community_Name}. Go to: 4 | 5 | {!Community_Url} 6 | 7 | Thanks, 8 | {!Organization.Name} -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityForgotPasswordEmailTemplate.email: -------------------------------------------------------------------------------- 1 | Hi {!Receiving_User.FirstName}, 2 | 3 | Your password has been reset for {!Community_Name}. Go to: 4 | 5 | {!Community_Url} 6 | 7 | Thanks, 8 | {!Organization.Name} -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "trailingComma": "none", 3 | "overrides": [ 4 | { 5 | "files": "**/lwc/**/*.html", 6 | "options": { "parser": "lwc" } 7 | }, 8 | { 9 | "files": "*.{cmp,page,component}", 10 | "options": { "parser": "html" } 11 | } 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /sfdx-project.json: -------------------------------------------------------------------------------- 1 | { 2 | "packageDirectories": [ 3 | { 4 | "path": "force-app", 5 | "default": true 6 | } 7 | ], 8 | "name": "sfdx-community-deployment", 9 | "namespace": "", 10 | "sfdcLoginUrl": "https://login.salesforce.com", 11 | "sourceApiVersion": "55.0" 12 | } 13 | -------------------------------------------------------------------------------- /force-app/main/default/lwc/customCommunityComponent/customCommunityComponent.js: -------------------------------------------------------------------------------- 1 | import { LightningElement, api } from 'lwc'; 2 | 3 | export default class CustomCommunityComponent extends LightningElement { 4 | 5 | @api buttonText; 6 | 7 | handleClick() { 8 | console.log("Button Clicked!"); 9 | } 10 | } -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityWelcomeEmailTemplate.email: -------------------------------------------------------------------------------- 1 | Hi {!Receiving_User.FirstName}, 2 | 3 | Welcome to {!Community_Name}! To get started, go to {!Community_Url} 4 | 5 | Username: {!Receiving_User.Username} 6 | 7 | Thanks, 8 | {!Organization.Name} -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesSelfRegConfirmController.cls: -------------------------------------------------------------------------------- 1 | /** 2 | * An apex page controller that takes the user to the right start page based on credentials or lack thereof 3 | */ 4 | public with sharing class CommunitiesSelfRegConfirmController { 5 | 6 | public CommunitiesSelfRegConfirmController() {} 7 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1.site-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | ChatterNetworkPicasso 5 | saltosupport/s 6 | 7 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | **/lwc/**/*.css 2 | **/lwc/**/*.html 3 | **/lwc/**/*.json 4 | **/lwc/**/*.svg 5 | **/lwc/**/*.xml 6 | **/aura/**/*.auradoc 7 | **/aura/**/*.cmp 8 | **/aura/**/*.css 9 | **/aura/**/*.design 10 | **/aura/**/*.evt 11 | **/aura/**/*.json 12 | **/aura/**/*.svg 13 | **/aura/**/*.tokens 14 | **/aura/**/*.xml 15 | **/aura/**/*.app 16 | .sfdx 17 | -------------------------------------------------------------------------------- /config/project-scratch-def.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgName": "Acme", 3 | "sourceOrg": "00D3h000005XLUw", 4 | "features": ["Communities", "ServiceCloud"], 5 | "settings": { 6 | "communitiesSettings": { 7 | "enableNetworksEnabled": true 8 | }, 9 | "experienceBundleSettings": { 10 | "enableExperienceBundleMetadata": true 11 | } 12 | } 13 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "b266cd71-ffb7-4eb9-9bde-d75c0562e36a", 3 | "appPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 4 | "configurationTags" : [ ], 5 | "id" : "11ad6a61-abb0-4060-bfcb-fa591f1d8051", 6 | "label" : "Login", 7 | "routeType" : "login-home", 8 | "type" : "route", 9 | "urlPrefix" : "" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/caseList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "ae415775-83c0-40c9-b789-c499f7d00bb4", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "a53584c8-1a7b-4f07-8f63-c88945041f3e", 6 | "label" : "Case List", 7 | "routeType" : "list-500", 8 | "type" : "route", 9 | "urlPrefix" : "case" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/groupList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "99bf07d4-3d0b-4145-bb07-98d4b8a92819", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "400d93c5-dd89-4ceb-ae4b-8ab31ce494ba", 6 | "label" : "Group List", 7 | "routeType" : "list-0F9", 8 | "type" : "route", 9 | "urlPrefix" : "group" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "53189477-6190-40a1-a1f6-dfbcfc817ec9", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "43bf8d27-2081-406e-b861-4c5c3863e25f", 6 | "label" : "Messages", 7 | "routeType" : "messages", 8 | "type" : "route", 9 | "urlPrefix" : "messages" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/topicDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "9f482f3e-e6c2-488d-9d43-1a504b59e3e3", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "c3745679-dd4d-447d-84b6-9b1682f86d37", 6 | "label" : "Topic Detail", 7 | "routeType" : "topic", 8 | "type" : "route", 9 | "urlPrefix" : "topic" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/userList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "dff00f13-0417-43e7-bfa2-daf5ca190a3f", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "61ec74ec-b21c-4aa8-942a-c8585c03ac1c", 6 | "label" : "User List", 7 | "routeType" : "list-005", 8 | "type" : "route", 9 | "urlPrefix" : "profile" 10 | } -------------------------------------------------------------------------------- /.forceignore: -------------------------------------------------------------------------------- 1 | # List files or directories below to ignore them when running force:source:push, force:source:pull, and force:source:status 2 | # More information: https://developer.salesforce.com/docs/atlas.en-us.sfdx_dev.meta/sfdx_dev/sfdx_dev_exclude_source.htm 3 | # 4 | 5 | package.xml 6 | 7 | # LWC configuration files 8 | **/jsconfig.json 9 | **/.eslintrc.json 10 | 11 | # LWC Jest 12 | **/__tests__/** -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/caseDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "bc4f6e5c-be4b-4675-baf7-704d1c06600b", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "cf14f679-6d5f-47c5-adeb-0d6cda8729d1", 6 | "label" : "Case Detail", 7 | "routeType" : "detail-500", 8 | "type" : "route", 9 | "urlPrefix" : "case" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/groupDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "f620014f-f023-4ec5-aa32-b3bfc65c5167", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "e8e3bf76-8b18-4567-807b-d32c332ee4e2", 6 | "label" : "Group Detail", 7 | "routeType" : "detail-0F9", 8 | "type" : "route", 9 | "urlPrefix" : "group" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/loginError.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "d62b8ef5-e94b-4bf8-ac88-fe469a8e8b56", 3 | "appPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 4 | "configurationTags" : [ ], 5 | "id" : "ba4a6891-9262-4365-ac85-9ba601e12b1c", 6 | "label" : "Login Error", 7 | "routeType" : "login-error", 8 | "type" : "route", 9 | "urlPrefix" : "error" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/recordDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "cb7e242f-7079-43a3-a6e1-5873bd6427ed", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "2e421b08-9ab0-427c-a797-4932ec3cc272", 6 | "label" : "Record Detail", 7 | "routeType" : "detail", 8 | "type" : "route", 9 | "urlPrefix" : "detail" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/reportList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "62bc7bbb-c599-4300-add9-8ec2aca3a4b2", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "0dbdd38e-ce0d-4b5f-87c2-e7d7530dba86", 6 | "label" : "Report List", 7 | "routeType" : "list-00O", 8 | "type" : "route", 9 | "urlPrefix" : "report" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/streamList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "4a73db23-5873-49ae-b07f-961cb7abf032", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "2adf247a-8ffe-447e-99f0-035c9d7a0463", 6 | "label" : "Stream List", 7 | "routeType" : "list-0Fq", 8 | "type" : "route", 9 | "urlPrefix" : "streams" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/articleDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "2c953750-f991-4247-a249-a275f557a88e", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "a50a997e-ae4b-46ac-8574-0c042736279e", 6 | "label" : "Article Detail", 7 | "routeType" : "article", 8 | "type" : "route", 9 | "urlPrefix" : "article" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/dashboardList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "ca2cfde2-4276-4cde-8ed6-0fb1b084b986", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "1b134754-0da6-4d22-b9df-1415eb7eae80", 6 | "label" : "Dashboard List", 7 | "routeType" : "list-01Z", 8 | "type" : "route", 9 | "urlPrefix" : "dashboard" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/feedDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "bd8c1f8a-f7d4-4d66-a7ae-72e302972297", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "11aa43ea-58c0-4e83-8d1c-947d6ce31cb3", 6 | "label" : "Feed Detail", 7 | "routeType" : "feeditem-generic", 8 | "type" : "route", 9 | "urlPrefix" : "feed" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/fileList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "806e93fc-d00a-4d2d-b4b5-ecc1b4c41c8f", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "2cf902f3-2825-4503-b4c6-3a50f63d486d", 6 | "label" : "File List", 7 | "routeType" : "list-069", 8 | "type" : "route", 9 | "urlPrefix" : "contentdocument" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/myAccount.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "b126362e-08ef-4911-8ff2-5edbcbd4e788", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "3f4c2747-2df1-46c8-a9c5-986f17dbb926", 6 | "label" : "My Account", 7 | "routeType" : "my-account", 8 | "type" : "route", 9 | "urlPrefix" : "comm-my-account" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "6f73120f-888c-4901-ac14-5b5c622594e0", 3 | "appPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 4 | "configurationTags" : [ ], 5 | "id" : "501fec08-fad9-4e36-8ef2-ea78ce9eb9fc", 6 | "label" : "Register", 7 | "routeType" : "self-register", 8 | "type" : "route", 9 | "urlPrefix" : "SelfRegister" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/reportDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "ae55e59c-afe4-4b20-8587-f6763dafbc8b", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "d79a8842-df8f-4c10-8338-c5a296bd8e56", 6 | "label" : "Report Detail", 7 | "routeType" : "detail-00O", 8 | "type" : "route", 9 | "urlPrefix" : "report" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/streamDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "0f9da10d-ac47-46ae-99c2-610076cb81ff", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "c509a4bf-e9e6-40fb-92b8-652653d3bdbc", 6 | "label" : "Stream Detail", 7 | "routeType" : "detail-0Fq", 8 | "type" : "route", 9 | "urlPrefix" : "streams" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/userProfile.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "3b8fc4a4-ea58-4f66-99ee-62c017516019", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "c6333288-6c3f-49e0-a9ca-fa387f5b2432", 6 | "label" : "User Profile", 7 | "routeType" : "detail-005", 8 | "type" : "route", 9 | "urlPrefix" : "profile" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/createRecord.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "40517425-8b9d-45b6-b756-4db0baffe5f4", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "cc5d11b6-ce60-441f-a6c6-661a78ec070c", 6 | "label" : "Create Record", 7 | "routeType" : "createrecord", 8 | "type" : "route", 9 | "urlPrefix" : "createrecord" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/fileDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "577dd538-841d-4fa7-8791-fec9e1c55ee5", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "bc217fc6-6737-49f0-947c-b19512c5a028", 6 | "label" : "File Detail", 7 | "routeType" : "detail-069", 8 | "type" : "route", 9 | "urlPrefix" : "contentdocument" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/home.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "e5fe239b-df73-430d-8f9b-c9ea53abbcb9", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "ed2effa3-8fba-426f-a84a-b311dcf6b661", 6 | "label" : "Home", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "home", 9 | "type" : "route", 10 | "urlPrefix" : "" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/questionDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "737c83bc-84ad-424f-aec0-93ea2cda6860", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "6ca6eabc-d532-43cc-81c2-d5888bf8ba54", 6 | "label" : "Question Detail", 7 | "routeType" : "feeditem", 8 | "type" : "route", 9 | "urlPrefix" : "question" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/userSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "6d4dd45c-7af5-4939-89b5-056c2b583e65", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "87256af1-5e87-4954-83ab-28159f888973", 6 | "label" : "User Settings", 7 | "routeType" : "usersettings", 8 | "type" : "route", 9 | "urlPrefix" : "settings" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/SUPPORTSelfServiceNewCommentNotificationSAMPLE.email: -------------------------------------------------------------------------------- 1 | Your case # {!Case.CaseNumber}: {!Case.Subject} has been updated. Please click on the link below 2 | to view this case on the Self-Service portal. 3 | 4 | 5 | Feel free to reach out to us at sla-notification@company.com 6 | 7 | {!Organization.Name} Customer Support -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/caseRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "579cc312-9e7e-4a11-a724-55ecc3a60c78", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "811cc25e-426e-4f51-adf8-d1bf80cf21d6", 6 | "label" : "Case Related List", 7 | "routeType" : "relatedlist-500", 8 | "type" : "route", 9 | "urlPrefix" : "case" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/dashboardDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "ad7f3ca9-8cd0-43a5-982c-cfb3221f9af0", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "995bc727-ffcc-48ed-ada3-41dc297f28a6", 6 | "label" : "Dashboard Detail", 7 | "routeType" : "detail-01Z", 8 | "type" : "route", 9 | "urlPrefix" : "dashboard" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/flow.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "fb16d216-1371-4501-a6f8-433adef46727", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "91436a54-7647-477e-a77c-421a0429fb1f", 6 | "label" : "Flow", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "flow", 9 | "type" : "route", 10 | "urlPrefix" : "flow" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/groupRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "1f0017f1-effd-45f9-8ae2-b11801795e9f", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "8aa80fb6-eb5f-47b5-a383-306ca35109ee", 6 | "label" : "Group Related List", 7 | "routeType" : "relatedlist-0F9", 8 | "type" : "route", 9 | "urlPrefix" : "group" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/reportBuilder.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "033522e2-ef11-4989-9731-3182f3024bf7", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "45dde1f8-45bc-408b-9d38-a46646bcdbab", 6 | "label" : "Report Builder", 7 | "routeType" : "createreport", 8 | "type" : "route", 9 | "urlPrefix" : "createreport" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/userRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "f32f5fca-a696-4cd2-972e-4cabc92f80b1", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "85a95fa3-9ef8-4fed-9c90-f5debb200a81", 6 | "label" : "User Related List", 7 | "routeType" : "relatedlist-005", 8 | "type" : "route", 9 | "urlPrefix" : "profile" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/error.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "8e9a9b8a-c95c-4e51-bd61-fd246afbdade", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "3a22f629-1d09-43ff-9b3f-b4be427a5341", 6 | "label" : "Error", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "error", 9 | "type" : "route", 10 | "urlPrefix" : "error" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/forgotPassword.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "302538ef-e266-4ad2-a003-5eb580926543", 3 | "appPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 4 | "configurationTags" : [ ], 5 | "id" : "ea2d94b2-45af-4dcc-b99b-cb543927d692", 6 | "label" : "Forgot Password", 7 | "routeType" : "forgot-password", 8 | "type" : "route", 9 | "urlPrefix" : "ForgotPassword" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/reportRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "4ec81079-4f5e-44e3-8aed-f0bf7bb32a4d", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "4cec6b9b-4930-4589-a33d-14c4ba0f78eb", 6 | "label" : "Report Related List", 7 | "routeType" : "relatedlist-00O", 8 | "type" : "route", 9 | "urlPrefix" : "report" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/streamRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "2bd6ee71-a500-4eba-971e-baf02ae315d4", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "255030d4-a90d-4faa-8521-af6bccd382e7", 6 | "label" : "Stream Related List", 7 | "routeType" : "relatedlist-0Fq", 8 | "type" : "route", 9 | "urlPrefix" : "streams" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/config/mainAppPage.json: -------------------------------------------------------------------------------- 1 | { 2 | "cmsSettings" : { }, 3 | "currentThemeId" : "e1779f59-56c0-4de5-a003-7dad262add58", 4 | "headMarkup" : null, 5 | "id" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 6 | "isLockerServiceEnabled" : true, 7 | "isRelaxedCSPLevel" : false, 8 | "label" : "main", 9 | "templateName" : "Service Community Template", 10 | "type" : "appPage" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/checkPassword.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "63bb4348-e854-49c2-be62-d6d5e22fb0fa", 3 | "appPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 4 | "configurationTags" : [ ], 5 | "id" : "9055d176-5826-4142-9557-8c57da5a5759", 6 | "label" : "Check Password", 7 | "routeType" : "check-password", 8 | "type" : "route", 9 | "urlPrefix" : "CheckPasswordResetEmail" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/fileRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "28ff696e-a86d-48d6-b91a-8acc3ec04b0b", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "96f2d9df-874c-403a-8fbd-3494d1a22a80", 6 | "label" : "File Related List", 7 | "routeType" : "relatedlist-069", 8 | "type" : "route", 9 | "urlPrefix" : "contentdocument" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/dashboardRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "108cd967-60dd-476f-8595-c179a2c10b54", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "ff45a7a7-6de3-4f25-b811-070c7b97b373", 6 | "label" : "Dashboard Related List", 7 | "routeType" : "relatedlist-01Z", 8 | "type" : "route", 9 | "urlPrefix" : "dashboard" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/accountManagement.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "e45a3e78-3490-4dca-9c65-51a640e81672", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "63dab9fa-5d9c-402a-8c41-a212ceda4c0e", 6 | "label" : "Account Management", 7 | "routeType" : "account-management", 8 | "type" : "route", 9 | "urlPrefix" : "account-management" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/recordList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "95cddc4f-c905-4023-8f37-7c7ce4bb1ec4", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "c0f351b7-bb27-4c38-af68-6f3e9181dc85", 6 | "label" : "Record List", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "list", 9 | "type" : "route", 10 | "urlPrefix" : "recordlist" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "f5baf0f3-7a63-48ca-8226-dd81e968bf2d", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "68a00480-b47a-4613-bea9-01f038ad19d1", 6 | "label" : "Search", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "global-search", 9 | "type" : "route", 10 | "urlPrefix" : "global-search" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/pabloPage.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "ebb8bd88-0f77-4c35-88cf-d483fba518b9", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "b166523c-a796-4387-943c-b1c4b2db7a73", 6 | "label" : "PabloPage", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "custom-pablopage", 9 | "type" : "route", 10 | "urlPrefix" : "pablopage" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/topArticles.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "78ca6586-b9cf-43d9-9a7a-ac9217d370fc", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "0b7d6c47-3670-4d0a-9047-fc7a2b7143bc", 6 | "label" : "Top Articles", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "top-articles", 9 | "type" : "route", 10 | "urlPrefix" : "toparticles" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/ExperienceCloudSelfRegMicroBatchSubErrorEmailTemplate.email: -------------------------------------------------------------------------------- 1 | We hit a snag with your registration to {!Community_Name}. 2 | 3 | 4 | Please resolve the following error: 5 | 6 | {!SelfReg_MicroBatch_Error} 7 | 8 | 9 | Go to {!Community_Url} to try again, or contact your administrator for help. 10 | 11 | 12 | Thank you, 13 | 14 | {!Organization.Name} -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/topicCatalog.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "97e2d6cd-f066-4d7a-923d-c07422cad2a3", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "5ab96134-2570-4151-89e5-009ef7458290", 6 | "label" : "Topic Catalog", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "topic-catalog", 9 | "type" : "route", 10 | "urlPrefix" : "topiccatalog" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/contactSupport.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "7948af3e-b61f-48b7-8a1a-53957c98e64d", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "8fd1071d-fd2d-4c49-86bc-16072b01588c", 6 | "label" : "Contact Support", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "contactsupport", 9 | "type" : "route", 10 | "urlPrefix" : "contactsupport" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/relatedRecordList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "c3e9e506-ea2e-450a-aba9-6bd652e9c624", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "b57af7fd-4b42-49fc-a99e-d7cb02b49779", 6 | "label" : "Related Record List", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "relatedlist", 9 | "type" : "route", 10 | "urlPrefix" : "relatedlist" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/quipDocsRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "6ca74b8b-7b6e-459d-b15e-d3ee5f87d37a", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ ], 5 | "id" : "23214635-2b3b-42a9-9b15-4ea8c88ffb2d", 6 | "label" : "Quip Docs Related List", 7 | "pageAccess" : "UseParent", 8 | "routeType" : "extrelated-quip", 9 | "type" : "route", 10 | "urlPrefix" : "quip" 11 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesLandingController.cls: -------------------------------------------------------------------------------- 1 | /** 2 | * An apex page controller that takes the user to the right start page based on credentials or lack thereof 3 | */ 4 | public with sharing class CommunitiesLandingController { 5 | 6 | // Code we will invoke on page load. 7 | public PageReference forwardToStartPage() { 8 | return Network.communitiesLanding(); 9 | } 10 | 11 | public CommunitiesLandingController() {} 12 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/serviceNotAvailable.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "28d78c13-2833-4f1b-bdfc-5a5e48422d5b", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ "allow-in-static-site" ], 5 | "id" : "6453ff46-d350-4c08-ab8a-db6a28f069e2", 6 | "label" : "Service Not Available", 7 | "routeType" : "service-not-available", 8 | "type" : "route", 9 | "urlPrefix" : "service-not-available" 10 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/routes/tooManyRequests.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeViewId" : "65cbd1f2-feec-427b-9b7a-523b74d1c1dc", 3 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 4 | "configurationTags" : [ "too-many-requests", "allow-in-static-site" ], 5 | "id" : "6e270ae2-b7fb-45b6-a7d7-738a17bc2fc4", 6 | "label" : "Too Many Requests", 7 | "routeType" : "too-many-requests", 8 | "type" : "route", 9 | "urlPrefix" : "too-many-requests" 10 | } -------------------------------------------------------------------------------- /scripts/apex/hello.apex: -------------------------------------------------------------------------------- 1 | // Use .apex files to store anonymous Apex. 2 | // You can execute anonymous Apex in VS Code by selecting the 3 | // apex text and running the command: 4 | // SFDX: Execute Anonymous Apex with Currently Selected Text 5 | // You can also execute the entire file by running the command: 6 | // SFDX: Execute Anonymous Apex with Editor Contents 7 | 8 | string tempvar = 'Enter_your_name_here'; 9 | System.debug('Hello World!'); 10 | System.debug('My name is ' + tempvar); -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityChgEmailVerOldTemplate.email: -------------------------------------------------------------------------------- 1 | Hi {!User.FirstName}, 2 | 3 | We received a request to change the email address for the username {!User.Username}. Please make sure the following changes are correct: 4 | 5 | Previous email address: {!ChgEmailVer.OldEmail} 6 | New email address: {!ChgEmailVer.NewEmail} 7 | 8 | If you didn't request this change, contact your {!Community_Name} administrator or reply to this email. -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/variations/homeAskButtonComponent.json: -------------------------------------------------------------------------------- 1 | { 2 | "componentVariants" : [ { 3 | "id" : "412eb0f4-f84d-4686-bb4a-cce6067df36a", 4 | "propertyOverrides" : { 5 | "isVisible" : true 6 | }, 7 | "targetId" : "ab37f004-bd49-4eb5-9f10-133f4165a026", 8 | "type" : "componentVariant" 9 | } ], 10 | "developerName" : "Home_Ask_Button_Component", 11 | "id" : "8f8f2554-a517-4a14-8311-920b4aeb75ab", 12 | "type" : "experienceVariation" 13 | } -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityChgEmailVerNewTemplate.email: -------------------------------------------------------------------------------- 1 | Hi {!User.FirstName}, 2 | 3 | We received a request to change the email address for the username {!User.Username}. Please make sure the following changes are correct: 4 | 5 | Previous email address: {!ChgEmailVer.OldEmail} 6 | New email address: {!ChgEmailVer.NewEmail} 7 | 8 | To finish changing your email address, go to the following link. This link expires in 72 hours. 9 | {!ChgEmailVer.Url} -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/config/saltoSupport.json: -------------------------------------------------------------------------------- 1 | { 2 | "forgotPasswordRouteId" : "ea2d94b2-45af-4dcc-b99b-cb543927d692", 3 | "isAvailableToGuests" : false, 4 | "isFilteredComponentsView" : false, 5 | "isProgressiveRenderingEnabled" : false, 6 | "loginAppPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 7 | "mainAppPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 8 | "preferredDomain" : "none", 9 | "selfRegistrationRouteId" : "501fec08-fad9-4e36-8ef2-ea78ce9eb9fc", 10 | "type" : "site" 11 | } -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- 1 | { 2 | // Use IntelliSense to learn about possible attributes. 3 | // Hover to view descriptions of existing attributes. 4 | // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 5 | "version": "0.2.0", 6 | "configurations": [ 7 | { 8 | "name": "Launch Apex Replay Debugger", 9 | "type": "apex-replay", 10 | "request": "launch", 11 | "logFile": "${command:AskForLogFileName}", 12 | "stopOnEntry": true, 13 | "trace": true 14 | } 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityChangePasswordEmailTemplate.email-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Notification of new password 5 | UTF-8 6 | Experience Cloud: Changed Password Email 7 | 8 | Your new {!Community_Name} password 9 | text 10 | Aloha 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityWelcomeEmailTemplate.email-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Notification that user has been added to a site. 5 | UTF-8 6 | Experience Cloud: New Member Welcome Email 7 | 8 | Welcome to {!Community_Name} 9 | text 10 | Aloha 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/pages/BandwidthExceeded.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 |
10 | 11 |
12 |
13 |
-------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesLoginController.cls: -------------------------------------------------------------------------------- 1 | /** 2 | * An apex page controller that exposes the site login functionality 3 | */ 4 | global with sharing class CommunitiesLoginController { 5 | 6 | global CommunitiesLoginController () {} 7 | 8 | // Code we will invoke on page load. 9 | global PageReference forwardToAuthPage() { 10 | String startUrl = System.currentPageReference().getParameters().get('startURL'); 11 | String displayType = System.currentPageReference().getParameters().get('display'); 12 | return Network.forwardToAuthPage(startUrl, displayType); 13 | } 14 | } -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityForgotPasswordEmailTemplate.email-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Notification of new password when a user’s password is reset (because they forgot it) 5 | UTF-8 6 | Experience Cloud: Forgot Password Email 7 | 8 | Your new {!Community_Name} password 9 | text 10 | Aloha 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/navigationMenus/SFDC_Default_Navigation_Salto Support.navigationMenu-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Salto Support 4 | Network 5 | 6 | 7 | 8 | 0 9 | true 10 | ShowMoreTopics 11 | NavigationalTopic 12 | 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityChgEmailVerOldTemplate.email-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Email that users receive on their old email when their email is changed 5 | UTF-8 6 | Experience Cloud: Old Email - Change Email Verification 7 | 8 | Your {!Community_Name} account’s email address was changed 9 | text 10 | Aloha 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Contact/fields/OtherAccountId__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | OtherAccountId__c 4 | SetNull 5 | false 6 | 7 | Account 8 | Contacts 9 | Contacts 10 | false 11 | false 12 | Lookup 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityChgEmailVerNewTemplate.email-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Email that users receive on their new email when their email is changed 5 | UTF-8 6 | Experience Cloud: New Email - Change Email Verification 7 | 8 | Finish changing your {!Community_Name} account’s email address 9 | text 10 | Aloha 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityLockoutEmailTemplate.email-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Email a user receives when they try to reset their password, but have been locked out because of too many failed login attempts. 5 | UTF-8 6 | Experience Cloud: User Lockout Email 7 | 8 | You've been locked out of {!Community_Name} 9 | text 10 | Aloha 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/SUPPORTSelfServiceNewCommentNotificationSAMPLE.email-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Sample email template that can be sent to your Self-Service customers to notify them a public comment has been added to their case. 5 | ISO-8859-1 6 | SUPPORT: Self-Service New Comment Notification (SAMPLE) 7 | 8 | Your case {!Case.CaseNumber} has been updated 9 | text 10 | Aloha 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/pages/InMaintenance.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 |
12 | 13 |
14 |
15 |
-------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/userList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "dff00f13-0417-43e7-bfa2-daf5ca190a3f", 5 | "label" : "User List", 6 | "regions" : [ { 7 | "id" : "abfdd175-7cbb-4890-8e40-6c78bf824f88", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "id" : "66d4879f-d2ba-4645-a6a7-a5bf08b414eb", 12 | "regionName" : "content", 13 | "type" : "region" 14 | }, { 15 | "id" : "bdcbc0ab-c1c7-40f4-bf33-0fa2b02ff405", 16 | "regionName" : "footer", 17 | "type" : "region" 18 | } ], 19 | "themeLayoutType" : "Inner", 20 | "type" : "view", 21 | "viewType" : "list-005" 22 | } -------------------------------------------------------------------------------- /force-app/main/default/lwc/customCommunityComponent/customCommunityComponent.js-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 45.0 4 | true 5 | My Lightning Web Component 6 | 7 | lightningCommunity__Page 8 | lightningCommunity__Default 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/streamRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "2bd6ee71-a500-4eba-971e-baf02ae315d4", 5 | "label" : "Stream Related List", 6 | "regions" : [ { 7 | "id" : "cb11a126-3296-4b5b-89b7-e98b81f6a11b", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "id" : "71efae12-61e3-4331-9349-06f98946049b", 12 | "regionName" : "content", 13 | "type" : "region" 14 | }, { 15 | "id" : "3513f58c-4017-4f31-94a0-a24cfcd4779e", 16 | "regionName" : "footer", 17 | "type" : "region" 18 | } ], 19 | "themeLayoutType" : "Inner", 20 | "type" : "view", 21 | "viewType" : "relatedlist-0Fq" 22 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/messages.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "53189477-6190-40a1-a1f6-dfbcfc817ec9", 5 | "label" : "Messages", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { }, 9 | "componentName" : "forceChatter:messages", 10 | "id" : "ed1599ff-1a0e-4c3f-9531-1b44093524ed", 11 | "renderPriority" : "NEUTRAL", 12 | "renditionMap" : { }, 13 | "type" : "component" 14 | } ], 15 | "id" : "d3bdcedf-2ebd-468d-b0fa-8705e8f9db46", 16 | "regionName" : "content", 17 | "type" : "region" 18 | } ], 19 | "themeLayoutType" : "Inner", 20 | "type" : "view", 21 | "viewType" : "messages" 22 | } -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesLogin.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | false 5 | false 6 | Default experiences login page 7 | 8 | 9 | 1 10 | 7 11 | sf_com_apps 12 | 13 | 14 | 1 15 | 0 16 | trlhdtips 17 | 18 | 19 | -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/streamList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "4a73db23-5873-49ae-b07f-961cb7abf032", 5 | "label" : "Stream List", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { }, 9 | "componentName" : "forceCommunity:streamList", 10 | "id" : "66364603-b84b-414b-a4f9-99574f4fea75", 11 | "renderPriority" : "NEUTRAL", 12 | "renditionMap" : { }, 13 | "type" : "component" 14 | } ], 15 | "id" : "049f9188-5214-4e32-8289-66634ea0435a", 16 | "regionName" : "content", 17 | "type" : "region" 18 | } ], 19 | "themeLayoutType" : "Inner", 20 | "type" : "view", 21 | "viewType" : "list-0Fq" 22 | } -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesLanding.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | false 5 | false 6 | Default experiences landing page 7 | 8 | 9 | 1 10 | 7 11 | sf_com_apps 12 | 13 | 14 | 1 15 | 0 16 | trlhdtips 17 | 18 | 19 | -------------------------------------------------------------------------------- /force-app/main/default/pages/InMaintenance.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | false 5 | false 6 | Default Lightning Platform In Maintenance page 7 | 8 | 9 | 1 10 | 7 11 | sf_com_apps 12 | 13 | 14 | 1 15 | 0 16 | trlhdtips 17 | 18 | 19 | -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/ExperienceCloudSelfRegMicroBatchSubErrorEmailTemplate.email-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | This email template applies to self-registration requests that are processed in batches after the request is submitted. A user receives this email when there is an error processing their self-registration request. 5 | UTF-8 6 | Experience Cloud: Self-Registration Micro-Batch Submission Error User Email 7 | 8 | Your registration to {!Community_Name} has failed 9 | text 10 | Aloha 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesSelfReg.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | false 5 | false 6 | Default experiences self registration page 7 | 8 | 9 | 1 10 | 7 11 | sf_com_apps 12 | 13 | 14 | 1 15 | 0 16 | trlhdtips 17 | 18 | 19 | -------------------------------------------------------------------------------- /force-app/main/default/pages/FileNotFound.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | false 5 | false 6 | Default Lightning Platform Page/Data Not Found page 7 | 8 | 9 | 1 10 | 7 11 | sf_com_apps 12 | 13 | 14 | 1 15 | 0 16 | trlhdtips 17 | 18 | 19 | -------------------------------------------------------------------------------- /force-app/main/default/pages/BandwidthExceeded.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | false 5 | false 6 | Default Lightning Platform Limit Exceeded page 7 | 8 | 9 | 1 10 | 7 11 | sf_com_apps 12 | 13 | 14 | 1 15 | 0 16 | trlhdtips 17 | 18 | 19 | -------------------------------------------------------------------------------- /force-app/main/default/pages/Exception.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | false 5 | false 6 | Default Lightning Platform page for post-authentication errors 7 | 8 | 9 | 1 10 | 7 11 | sf_com_apps 12 | 13 | 14 | 1 15 | 0 16 | trlhdtips 17 | 18 | 19 | -------------------------------------------------------------------------------- /force-app/main/default/email/unfiled$public/CommunityLockoutEmailTemplate.email: -------------------------------------------------------------------------------- 1 | Hello {!Receiving_User.FirstName}, 2 | 3 | We received your request to reset your {!Community_Name} password. We can't reset your password right now. Your account is locked after too many login attempts. 4 | 5 | {!CASE(1, 6 | IF(VALUE(PASSWORD_LOCK_TIME) > 0, 1, 0), "Try again in " + PASSWORD_LOCK_TIME + " minutes.", 7 | IF(VALUE(PASSWORD_LOCK_TIME) < 0, 1, 0), "Contact your " + Community_Name + " administrator to unlock your account.", 8 | "")} 9 | 10 | If you didn't request a password reset or haven't tried to log in to your account recently, contact your {!Community_Name} administrator or reply to this email. 11 | 12 | Thank you, 13 | {!Community_Name} -------------------------------------------------------------------------------- /force-app/main/default/pages/ForgotPassword.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | false 5 | false 6 | Default Salesforce Sites Forgot Password Confirmation page 7 | 8 | 9 | 1 10 | 7 11 | sf_com_apps 12 | 13 | 14 | 1 15 | 0 16 | trlhdtips 17 | 18 | 19 | -------------------------------------------------------------------------------- /force-app/main/default/sharingSets/Share_cases_with_users.sharingSet-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Read 5 | Account 6 | Id 7 | Manager.Account 8 | 9 | 10 | Read 11 | Case 12 | Original_Deal__c.Account 13 | Contact.OtherAccountId__c 14 | 15 | Share cases with users 16 | customer community user 17 | partner community login user 18 | 19 | -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesSelfRegConfirm.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54.0 4 | false 5 | false 6 | Default experiences self registration confirmation page 7 | 8 | 9 | 1 10 | 7 11 | sf_com_apps 12 | 13 | 14 | 1 15 | 0 16 | trlhdtips 17 | 18 | 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # This file is used for Git repositories to specify intentionally untracked files that Git should ignore. 2 | # If you are not using git, you can delete this file. For more information see: https://git-scm.com/docs/gitignore 3 | # For useful gitignore templates see: https://github.com/github/gitignore 4 | 5 | # Salesforce cache 6 | .sf/ 7 | .sfdx/ 8 | .localdevserver/ 9 | deploy-options.json 10 | 11 | # LWC VSCode autocomplete 12 | **/lwc/jsconfig.json 13 | 14 | # LWC Jest coverage reports 15 | coverage/ 16 | 17 | # Logs 18 | logs 19 | *.log 20 | npm-debug.log* 21 | yarn-debug.log* 22 | yarn-error.log* 23 | 24 | # Dependency directories 25 | node_modules/ 26 | 27 | # Eslint cache 28 | .eslintcache 29 | 30 | # MacOS system files 31 | .DS_Store 32 | 33 | # Windows system files 34 | Thumbs.db 35 | ehthumbs.db 36 | [Dd]esktop.ini 37 | $RECYCLE.BIN/ 38 | 39 | # Local environment variables 40 | .env -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/reportList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "62bc7bbb-c599-4300-add9-8ec2aca3a4b2", 5 | "label" : "Report List", 6 | "regions" : [ { 7 | "id" : "662368ac-4b60-4d6a-a8bf-972bd9c05d62", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { }, 13 | "componentName" : "forceCommunity:reportList", 14 | "id" : "3afbfab5-08f6-4f09-ade8-79a3ec760c1a", 15 | "renderPriority" : "NEUTRAL", 16 | "renditionMap" : { }, 17 | "type" : "component" 18 | } ], 19 | "id" : "17509658-9d94-4cf6-9b62-553210ebe312", 20 | "regionName" : "content", 21 | "type" : "region" 22 | }, { 23 | "id" : "9f734f14-bb51-43c7-a852-d5c32475a445", 24 | "regionName" : "footer", 25 | "type" : "region" 26 | } ], 27 | "themeLayoutType" : "Inner", 28 | "type" : "view", 29 | "viewType" : "list-00O" 30 | } -------------------------------------------------------------------------------- /force-app/main/default/objects/Case/fields/Original_Deal__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Original_Deal__c 4 | SetNull 5 | false 6 | 7 | 8 | true 9 | 10 | Opportunity.DeliveryInstallationStatus__c 11 | equals 12 | Completed 13 | 14 | false 15 | 16 | Opportunity 17 | Cases 18 | Cases 19 | false 20 | false 21 | false 22 | false 23 | Lookup 24 | 25 | -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/dashboardList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "ca2cfde2-4276-4cde-8ed6-0fb1b084b986", 5 | "label" : "Dashboard List", 6 | "regions" : [ { 7 | "id" : "becde370-e1ca-49c1-850c-54b98c5e99ae", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { }, 13 | "componentName" : "forceCommunity:dashboardList", 14 | "id" : "6afda692-9ada-4b33-b7aa-72847cd22582", 15 | "renderPriority" : "NEUTRAL", 16 | "renditionMap" : { }, 17 | "type" : "component" 18 | } ], 19 | "id" : "4cd32442-d969-4dcc-bd35-4029ea872834", 20 | "regionName" : "content", 21 | "type" : "region" 22 | }, { 23 | "id" : "a9535efc-d16b-4bdf-8a47-a3dbb97d0336", 24 | "regionName" : "footer", 25 | "type" : "region" 26 | } ], 27 | "themeLayoutType" : "Inner", 28 | "type" : "view", 29 | "viewType" : "list-01Z" 30 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/fileDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "577dd538-841d-4fa7-8791-fec9e1c55ee5", 5 | "label" : "File Detail", 6 | "regions" : [ { 7 | "id" : "0a77dcba-500a-4ff8-9da7-18857f639330", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { }, 13 | "componentName" : "forceCommunity:fileDetailPage", 14 | "id" : "e0c8a769-405d-4335-b344-e3664c4eec6a", 15 | "renderPriority" : "NEUTRAL", 16 | "renditionMap" : { }, 17 | "type" : "component" 18 | } ], 19 | "id" : "8c8196b3-0496-4c28-b1dc-1fbb8335ab20", 20 | "regionName" : "content", 21 | "type" : "region" 22 | }, { 23 | "id" : "478efc45-4a78-489d-8d58-ade19e1efae2", 24 | "regionName" : "footer", 25 | "type" : "region" 26 | } ], 27 | "themeLayoutType" : "Inner", 28 | "type" : "view", 29 | "viewType" : "detail-069" 30 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/fileList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "806e93fc-d00a-4d2d-b4b5-ecc1b4c41c8f", 5 | "label" : "File List", 6 | "regions" : [ { 7 | "id" : "25b61f4d-06fa-4ac0-99f8-146ee0192b71", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "pageSize" : 25 14 | }, 15 | "componentName" : "forceCommunity:filesList", 16 | "id" : "42f6f139-03e9-46ac-b93a-1c0c8f0cbaff", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | } ], 21 | "id" : "33b5c0cf-d469-4487-98b0-39564dd5c60d", 22 | "regionName" : "content", 23 | "type" : "region" 24 | }, { 25 | "id" : "30d4d6cc-240f-40e4-9ce9-69c27fb4cacc", 26 | "regionName" : "footer", 27 | "type" : "region" 28 | } ], 29 | "themeLayoutType" : "Inner", 30 | "type" : "view", 31 | "viewType" : "list-069" 32 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/streamDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "0f9da10d-ac47-46ae-99c2-610076cb81ff", 5 | "label" : "Stream Detail", 6 | "regions" : [ { 7 | "id" : "961218cf-fb79-4bd5-aac7-45453e6108dd", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "id" : "{!recordId}" 14 | }, 15 | "componentName" : "forceCommunity:streamDetail", 16 | "id" : "ec6f1eca-9fb6-4f76-b446-8a995d6a546b", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | } ], 21 | "id" : "d870621c-2073-45cc-99f2-007c47091ebd", 22 | "regionName" : "content", 23 | "type" : "region" 24 | }, { 25 | "id" : "526573bc-f530-4a09-92e0-31a974631236", 26 | "regionName" : "footer", 27 | "type" : "region" 28 | } ], 29 | "themeLayoutType" : "Inner", 30 | "type" : "view", 31 | "viewType" : "detail-0Fq" 32 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/feedDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "bd8c1f8a-f7d4-4d66-a7ae-72e302972297", 5 | "label" : "Feed Detail", 6 | "regions" : [ { 7 | "id" : "33f28c73-81f5-4d5b-a76a-0f9d3b2cb21d", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "id" : "{!recordId}" 14 | }, 15 | "componentName" : "forceCommunity:feedItemDetail", 16 | "id" : "9884409e-7d35-4c00-a36b-17f4177c803a", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | } ], 21 | "id" : "96b10d37-1ce6-4693-8054-548eb05bd2f7", 22 | "regionName" : "content", 23 | "type" : "region" 24 | }, { 25 | "id" : "8ce50099-9f2f-4630-962d-37b334b0dc13", 26 | "regionName" : "footer", 27 | "type" : "region" 28 | } ], 29 | "themeLayoutType" : "Inner", 30 | "type" : "view", 31 | "viewType" : "feeditem-generic" 32 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/reportBuilder.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "033522e2-ef11-4989-9731-3182f3024bf7", 5 | "label" : "Report Builder", 6 | "regions" : [ { 7 | "id" : "e4a3701c-824b-4ff0-82c4-455b2360f247", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "recordId" : "{!recordId}" 14 | }, 15 | "componentName" : "forceCommunity:reportBuilder", 16 | "id" : "3525b4ec-28f0-45ab-bb90-5b1e29cf2720", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | } ], 21 | "id" : "d54067ba-420f-48a2-beb8-3289710137dd", 22 | "regionName" : "content", 23 | "type" : "region" 24 | }, { 25 | "id" : "89175071-0527-4d7c-ad92-f938af43be42", 26 | "regionName" : "footer", 27 | "type" : "region" 28 | } ], 29 | "themeLayoutType" : "Inner", 30 | "type" : "view", 31 | "viewType" : "createreport" 32 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/createRecord.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "40517425-8b9d-45b6-b756-4db0baffe5f4", 5 | "label" : "Create Record", 6 | "regions" : [ { 7 | "id" : "26536752-73b4-4406-8b03-96c2f9960472", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "actionApiName" : "{!actionApiName}" 14 | }, 15 | "componentName" : "forceCommunity:createRecordForm", 16 | "id" : "eebb3360-6eb6-40e0-8b84-4d38fad496a7", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | } ], 21 | "id" : "77acabe0-6b14-47fd-aac4-25c73c4fd720", 22 | "regionName" : "content", 23 | "type" : "region" 24 | }, { 25 | "id" : "eda1a16a-9df3-4e9b-b3ee-b80098b0f299", 26 | "regionName" : "footer", 27 | "type" : "region" 28 | } ], 29 | "themeLayoutType" : "Inner", 30 | "type" : "view", 31 | "viewType" : "createrecord" 32 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/flow.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "fb16d216-1371-4501-a6f8-433adef46727", 5 | "label" : "Flow", 6 | "regions" : [ { 7 | "id" : "a34d0750-389c-4828-9bb1-51ffc225018e", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "flowArguments" : "", 14 | "flowName" : "{!flowName}" 15 | }, 16 | "componentName" : "forceCommunity:flowCommunity", 17 | "id" : "124ca0c5-9f5d-4593-9974-ef72a1cfdf0c", 18 | "renderPriority" : "NEUTRAL", 19 | "renditionMap" : { }, 20 | "type" : "component" 21 | } ], 22 | "id" : "46f93625-3f9c-4346-b0d2-2bd297b3c9b4", 23 | "regionName" : "content", 24 | "type" : "region" 25 | }, { 26 | "id" : "a0957493-9fbb-45fc-bb48-944fe012ce76", 27 | "regionName" : "footer", 28 | "type" : "region" 29 | } ], 30 | "themeLayoutType" : "Inner", 31 | "type" : "view", 32 | "viewType" : "flow" 33 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/quipDocsRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "6ca74b8b-7b6e-459d-b15e-d3ee5f87d37a", 5 | "label" : "Quip Docs Related List", 6 | "regions" : [ { 7 | "id" : "1c2adc05-39ad-4f1a-b804-801015881923", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "parentRecordId" : "{!recordId}" 14 | }, 15 | "componentName" : "forceCommunity:relatedQuipItemsView", 16 | "id" : "d1e0fc0b-8784-45dd-bd90-46490a0e87f5", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | } ], 21 | "id" : "066978eb-2eb2-4642-aefa-e12b6f204b05", 22 | "regionName" : "content", 23 | "type" : "region" 24 | }, { 25 | "id" : "b5ae3032-d82e-4f3c-a3b3-b64d56d49c98", 26 | "regionName" : "footer", 27 | "type" : "region" 28 | } ], 29 | "themeLayoutType" : "Inner", 30 | "type" : "view", 31 | "viewType" : "extrelated-quip" 32 | } -------------------------------------------------------------------------------- /force-app/main/default/audience/VIP_Customers.audience-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | VIP Customers 4 | Salto Support 5 | 6 | 7 | 1 8 | 9 | Contact.Account.$Account.CustomerPriority__c 10 | User 11 | New High 12 | 13 | Equal 14 | FieldBased 15 | 16 | 17 | AllCriteriaMatch 18 | false 19 | 20 | 21 | e5fe239b-df73-430d-8f9b-c9ea53abbcb9$#$ab37f004-bd49-4eb5-9f10-133f4165a026 22 | 1 23 | ExperienceVariation 24 | Home_Ask_Button_Component 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Opportunity/fields/DeliveryInstallationStatus__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | DeliveryInstallationStatus__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Picklist 10 | 11 | 12 | false 13 | 14 | In progress 15 | false 16 | 17 | 18 | 19 | Yet to begin 20 | false 21 | 22 | 23 | 24 | Completed 25 | false 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Account/fields/CustomerPriority__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | CustomerPriority__c 4 | false 5 | This Field is used to trigger automatic notificationss to sla-emails@company.com 6 | 7 | false 8 | false 9 | Picklist 10 | 11 | 12 | false 13 | 14 | Lowest 15 | true 16 | 17 | 18 | 19 | Medium 20 | false 21 | 22 | 23 | 24 | New High 25 | false 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/caseRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "579cc312-9e7e-4a11-a724-55ecc3a60c78", 5 | "label" : "Case Related List", 6 | "regions" : [ { 7 | "id" : "bba59d0d-0799-4fb8-9fe2-a8e0649c93e0", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "customTitle" : "", 14 | "parentRecordId" : "{!recordId}", 15 | "relatedListName" : "{!relationshipApiName}", 16 | "showBreadCrumbs" : true, 17 | "showCustomTitle" : false, 18 | "showManualRefreshButton" : true, 19 | "showRowNumbers" : true 20 | }, 21 | "componentName" : "forceCommunity:relatedList", 22 | "id" : "14e2439a-f88f-4112-acb7-e4e8cb9fa9dd", 23 | "renderPriority" : "NEUTRAL", 24 | "renditionMap" : { }, 25 | "type" : "component" 26 | } ], 27 | "id" : "45302cdf-03ba-4d27-a426-5f7ea1dd35c2", 28 | "regionName" : "content", 29 | "type" : "region" 30 | }, { 31 | "id" : "1e1761aa-39ca-4111-ab99-397e80ea9ff1", 32 | "regionName" : "footer", 33 | "type" : "region" 34 | } ], 35 | "themeLayoutType" : "Inner", 36 | "type" : "view", 37 | "viewType" : "relatedlist-500" 38 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/fileRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "28ff696e-a86d-48d6-b91a-8acc3ec04b0b", 5 | "label" : "File Related List", 6 | "regions" : [ { 7 | "id" : "82983453-df54-48a1-a97e-783a065737ef", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "customTitle" : "", 14 | "parentRecordId" : "{!recordId}", 15 | "relatedListName" : "{!relationshipApiName}", 16 | "showBreadCrumbs" : true, 17 | "showCustomTitle" : false, 18 | "showManualRefreshButton" : true, 19 | "showRowNumbers" : true 20 | }, 21 | "componentName" : "forceCommunity:relatedList", 22 | "id" : "eb15a092-bcea-4979-b897-22c8c36b59f2", 23 | "renderPriority" : "NEUTRAL", 24 | "renditionMap" : { }, 25 | "type" : "component" 26 | } ], 27 | "id" : "c696966b-0df0-4f46-9bd6-3b21e1628f55", 28 | "regionName" : "content", 29 | "type" : "region" 30 | }, { 31 | "id" : "26e62699-85af-4b33-a434-2b13a44592dd", 32 | "regionName" : "footer", 33 | "type" : "region" 34 | } ], 35 | "themeLayoutType" : "Inner", 36 | "type" : "view", 37 | "viewType" : "relatedlist-069" 38 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/groupRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "1f0017f1-effd-45f9-8ae2-b11801795e9f", 5 | "label" : "Group Related List", 6 | "regions" : [ { 7 | "id" : "21de3484-7c50-4dcc-973d-bb9d9dc2f833", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "customTitle" : "", 14 | "parentRecordId" : "{!recordId}", 15 | "relatedListName" : "{!relationshipApiName}", 16 | "showBreadCrumbs" : true, 17 | "showCustomTitle" : false, 18 | "showManualRefreshButton" : true, 19 | "showRowNumbers" : true 20 | }, 21 | "componentName" : "forceCommunity:relatedList", 22 | "id" : "9f7066ff-4b06-4577-80aa-b2503ef6b5c1", 23 | "renderPriority" : "NEUTRAL", 24 | "renditionMap" : { }, 25 | "type" : "component" 26 | } ], 27 | "id" : "062a2299-47bc-4b76-85d9-f43a7d70407f", 28 | "regionName" : "content", 29 | "type" : "region" 30 | }, { 31 | "id" : "8e545461-6b14-4405-b877-31bb1d752634", 32 | "regionName" : "footer", 33 | "type" : "region" 34 | } ], 35 | "themeLayoutType" : "Inner", 36 | "type" : "view", 37 | "viewType" : "relatedlist-0F9" 38 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/relatedRecordList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "c3e9e506-ea2e-450a-aba9-6bd652e9c624", 5 | "label" : "Related Record List", 6 | "regions" : [ { 7 | "id" : "92ea2614-7215-42a7-8d70-750168fa6a5f", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "customTitle" : "", 14 | "parentRecordId" : "{!recordId}", 15 | "relatedListName" : "{!relationshipApiName}", 16 | "showBreadCrumbs" : true, 17 | "showCustomTitle" : false, 18 | "showManualRefreshButton" : true, 19 | "showRowNumbers" : true 20 | }, 21 | "componentName" : "forceCommunity:relatedList", 22 | "id" : "160521d1-c773-4041-856c-3e4f0a38c9b0", 23 | "renderPriority" : "NEUTRAL", 24 | "renditionMap" : { }, 25 | "type" : "component" 26 | } ], 27 | "id" : "bd623a53-de18-42de-87c5-fe1b02f2c58e", 28 | "regionName" : "content", 29 | "type" : "region" 30 | }, { 31 | "id" : "8ad6d975-c522-4e00-a969-5c8291db51cb", 32 | "regionName" : "footer", 33 | "type" : "region" 34 | } ], 35 | "themeLayoutType" : "Inner", 36 | "type" : "view", 37 | "viewType" : "relatedlist" 38 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/userRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "f32f5fca-a696-4cd2-972e-4cabc92f80b1", 5 | "label" : "User Related List", 6 | "regions" : [ { 7 | "id" : "42df59c8-ef47-4388-9d85-9e06e2816928", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "customTitle" : "", 14 | "parentRecordId" : "{!recordId}", 15 | "relatedListName" : "{!relationshipApiName}", 16 | "showBreadCrumbs" : true, 17 | "showCustomTitle" : false, 18 | "showManualRefreshButton" : true, 19 | "showRowNumbers" : true 20 | }, 21 | "componentName" : "forceCommunity:relatedList", 22 | "id" : "7ff7ce1f-e3d1-4e6a-a37d-33e80b860cad", 23 | "renderPriority" : "NEUTRAL", 24 | "renditionMap" : { }, 25 | "type" : "component" 26 | } ], 27 | "id" : "0e02f78d-4f0b-4b96-8753-188a6b091e7a", 28 | "regionName" : "content", 29 | "type" : "region" 30 | }, { 31 | "id" : "efd7762f-1c4c-407a-b104-987c50893340", 32 | "regionName" : "footer", 33 | "type" : "region" 34 | } ], 35 | "themeLayoutType" : "Inner", 36 | "type" : "view", 37 | "viewType" : "relatedlist-005" 38 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/reportRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "4ec81079-4f5e-44e3-8aed-f0bf7bb32a4d", 5 | "label" : "Report Related List", 6 | "regions" : [ { 7 | "id" : "7351e3ba-a10b-4cf6-afc0-88f812568523", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "customTitle" : "", 14 | "parentRecordId" : "{!recordId}", 15 | "relatedListName" : "{!relationshipApiName}", 16 | "showBreadCrumbs" : true, 17 | "showCustomTitle" : false, 18 | "showManualRefreshButton" : true, 19 | "showRowNumbers" : true 20 | }, 21 | "componentName" : "forceCommunity:relatedList", 22 | "id" : "ca91ca64-1dfb-4b8e-85b7-410e5c5c5dc6", 23 | "renderPriority" : "NEUTRAL", 24 | "renditionMap" : { }, 25 | "type" : "component" 26 | } ], 27 | "id" : "ecda95e5-6eb6-493a-bbd2-e53606a2ce80", 28 | "regionName" : "content", 29 | "type" : "region" 30 | }, { 31 | "id" : "d1ab535d-f001-47ca-8cce-ade5e54f6f3b", 32 | "regionName" : "footer", 33 | "type" : "region" 34 | } ], 35 | "themeLayoutType" : "Inner", 36 | "type" : "view", 37 | "viewType" : "relatedlist-00O" 38 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/dashboardRelatedList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "108cd967-60dd-476f-8595-c179a2c10b54", 5 | "label" : "Dashboard Related List", 6 | "regions" : [ { 7 | "id" : "77521f90-83d7-4221-8055-13df7651a72f", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "customTitle" : "", 14 | "parentRecordId" : "{!recordId}", 15 | "relatedListName" : "{!relationshipApiName}", 16 | "showBreadCrumbs" : true, 17 | "showCustomTitle" : false, 18 | "showManualRefreshButton" : true, 19 | "showRowNumbers" : true 20 | }, 21 | "componentName" : "forceCommunity:relatedList", 22 | "id" : "91a2523e-3df2-4954-b590-7bb859052a55", 23 | "renderPriority" : "NEUTRAL", 24 | "renditionMap" : { }, 25 | "type" : "component" 26 | } ], 27 | "id" : "e52d9e6c-4569-40e0-ac9a-a35639a4956c", 28 | "regionName" : "content", 29 | "type" : "region" 30 | }, { 31 | "id" : "0142a676-efde-467e-a732-cb113c7ff86d", 32 | "regionName" : "footer", 33 | "type" : "region" 34 | } ], 35 | "themeLayoutType" : "Inner", 36 | "type" : "view", 37 | "viewType" : "relatedlist-01Z" 38 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/serviceNotAvailable.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "28d78c13-2833-4f1b-bdfc-5a5e48422d5b", 5 | "label" : "Service Not Available", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { 9 | "richTextValue" : "

Looks like the site is temporarily unavailable


Please try again in a bit.

" 10 | }, 11 | "componentName" : "forceCommunity:htmlBlock", 12 | "id" : "a4828b6c-4a2d-4928-9694-cff7211c41a2", 13 | "renderPriority" : "NEUTRAL", 14 | "renditionMap" : { }, 15 | "type" : "component" 16 | } ], 17 | "id" : "774614f3-bdd9-4431-84e9-bc287073b313", 18 | "regionName" : "content", 19 | "type" : "region" 20 | } ], 21 | "themeLayoutType" : "ServiceNotAvailable", 22 | "type" : "view", 23 | "viewType" : "service-not-available" 24 | } -------------------------------------------------------------------------------- /force-app/main/default/managedTopics/Salto Support.managedTopics-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Salto Support.Content:Astro 5 | Content 6 | Astro 7 | 8 | 1 9 | 10 | 11 | 12 | Salto Support.Content:Cody 13 | Content 14 | Cody 15 | 16 | 0 17 | 18 | 19 | 20 | Salto Support.Navigational:AnotherNavTopic 21 | Navigational 22 | AnotherNavTopic 23 | 24 | 1 25 | 26 | 27 | 28 | Salto Support.Navigational:NavTopic 29 | Navigational 30 | NavTopic 31 | 32 | 0 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/groupList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "99bf07d4-3d0b-4145-bb07-98d4b8a92819", 5 | "label" : "Group List", 6 | "regions" : [ { 7 | "id" : "13b0fc18-4752-49af-9ffb-82b676d6f6d4", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "richTextValue" : "

Group List

" 14 | }, 15 | "componentName" : "forceCommunity:richTextInline", 16 | "id" : "732babd2-8c4a-40f7-b9be-a427605b8233", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | }, { 21 | "componentAttributes" : { }, 22 | "componentName" : "forceCommunity:groupObjectHome", 23 | "id" : "4407e39d-af33-46f5-b9b8-cd9610670090", 24 | "renderPriority" : "NEUTRAL", 25 | "renditionMap" : { }, 26 | "type" : "component" 27 | } ], 28 | "id" : "38877a24-e030-419c-ab22-a034f13d89b6", 29 | "regionName" : "content", 30 | "type" : "region" 31 | }, { 32 | "id" : "e49e7a18-c1f7-4953-ba8e-3f6d50bb5d6b", 33 | "regionName" : "footer", 34 | "type" : "region" 35 | } ], 36 | "themeLayoutType" : "Inner", 37 | "type" : "view", 38 | "viewType" : "list-0F9" 39 | } -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesSelfRegConfirm.page: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 |
6 |
7 | 8 |
9 | 10 | 11 | 12 | 13 |
14 | 15 |
16 |
17 | {!$Label.site.go_to_login_page} 18 |
19 |
20 |
21 |
22 | 23 |
24 |
25 |
26 |
27 |
28 |
-------------------------------------------------------------------------------- /force-app/main/default/pages/FileNotFound.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |
7 |
8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 |
20 | 21 |
22 |
23 |
24 | 25 |
26 |
27 |
28 |
29 |
30 | 31 |
-------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "salesforce-app", 3 | "private": true, 4 | "version": "1.0.0", 5 | "description": "Salesforce App", 6 | "scripts": { 7 | "lint": "eslint **/{aura,lwc}/**", 8 | "test": "npm run test:unit", 9 | "test:unit": "sfdx-lwc-jest", 10 | "test:unit:watch": "sfdx-lwc-jest --watch", 11 | "test:unit:debug": "sfdx-lwc-jest --debug", 12 | "test:unit:coverage": "sfdx-lwc-jest --coverage", 13 | "prettier": "prettier --write \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"", 14 | "prettier:verify": "prettier --list-different \"**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}\"", 15 | "postinstall": "husky install", 16 | "precommit": "lint-staged" 17 | }, 18 | "devDependencies": { 19 | "@lwc/eslint-plugin-lwc": "^1.1.2", 20 | "@prettier/plugin-xml": "^2.0.1", 21 | "@salesforce/eslint-config-lwc": "^3.2.3", 22 | "@salesforce/eslint-plugin-aura": "^2.0.0", 23 | "@salesforce/eslint-plugin-lightning": "^1.0.0", 24 | "@salesforce/sfdx-lwc-jest": "^1.1.0", 25 | "eslint": "^8.11.0", 26 | "eslint-plugin-import": "^2.25.4", 27 | "eslint-plugin-jest": "^26.1.2", 28 | "husky": "^7.0.4", 29 | "lint-staged": "^12.3.7", 30 | "prettier": "^2.6.0", 31 | "prettier-plugin-apex": "^1.10.0" 32 | }, 33 | "lint-staged": { 34 | "**/*.{cls,cmp,component,css,html,js,json,md,page,trigger,xml,yaml,yml}": [ 35 | "prettier --write" 36 | ], 37 | "**/{aura,lwc}/**": [ 38 | "eslint" 39 | ] 40 | } 41 | } 42 | -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/search.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "f5baf0f3-7a63-48ca-8226-dd81e968bf2d", 5 | "label" : "Search", 6 | "regions" : [ { 7 | "id" : "f4083d2e-5e21-4700-b678-131243ef1b03", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "scopes" : [ { 14 | "isPublic" : true, 15 | "name" : "FeedPost" 16 | }, { 17 | "isPublic" : true, 18 | "name" : "KnowledgeArticleVersion" 19 | }, { 20 | "isPublic" : false, 21 | "name" : "Case" 22 | }, { 23 | "isPublic" : true, 24 | "name" : "CollaborationGroup" 25 | } ], 26 | "searchResultFiltering" : true, 27 | "searchTerm" : "{!term}", 28 | "showTopResults" : true 29 | }, 30 | "componentName" : "forceCommunity:search", 31 | "id" : "4a488c6c-9f7e-49ac-bb4b-e925459118ac", 32 | "renderPriority" : "NEUTRAL", 33 | "renditionMap" : { }, 34 | "type" : "component" 35 | } ], 36 | "id" : "aaa2a258-f5bd-4825-93c7-6b860f04543c", 37 | "regionName" : "content", 38 | "type" : "region" 39 | }, { 40 | "id" : "ae8d810a-fc12-4dc0-a2ed-3efdd0262ac5", 41 | "regionName" : "footer", 42 | "type" : "region" 43 | } ], 44 | "themeLayoutType" : "Inner", 45 | "type" : "view", 46 | "viewType" : "global-search" 47 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/caseList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "ae415775-83c0-40c9-b789-c499f7d00bb4", 5 | "label" : "Case List", 6 | "regions" : [ { 7 | "id" : "460dbe1a-ddaa-402f-9ade-788e619537c3", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "enableInlineEdit" : true, 14 | "filterName" : "{!filterId}", 15 | "layout" : "FULL", 16 | "pageSize" : 25, 17 | "scope" : "{!objectName}", 18 | "showActionBar" : true, 19 | "showChartsPanel" : true, 20 | "showDisplay" : "showall", 21 | "showFilterPanel" : true, 22 | "showImageIcon" : true, 23 | "showManualRefreshButton" : true, 24 | "showObjectName" : true, 25 | "showPinnedList" : true, 26 | "showSearchBar" : true 27 | }, 28 | "componentName" : "forceCommunity:objectHome", 29 | "id" : "0bd03eda-5471-4e0c-85cf-5307d323bd42", 30 | "renderPriority" : "NEUTRAL", 31 | "renditionMap" : { }, 32 | "type" : "component" 33 | } ], 34 | "id" : "bbda3936-0b50-4c6c-b9bd-863046d5bf17", 35 | "regionName" : "content", 36 | "type" : "region" 37 | }, { 38 | "id" : "2a3463f8-ae59-4460-ab43-d47df7eb006b", 39 | "regionName" : "footer", 40 | "type" : "region" 41 | } ], 42 | "themeLayoutType" : "Inner", 43 | "type" : "view", 44 | "viewType" : "list-500" 45 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/recordList.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "95cddc4f-c905-4023-8f37-7c7ce4bb1ec4", 5 | "label" : "Record List", 6 | "regions" : [ { 7 | "id" : "ac4ee687-82dd-4bac-8e66-fbd201a0398a", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "enableInlineEdit" : true, 14 | "filterName" : "{!filterId}", 15 | "layout" : "FULL", 16 | "pageSize" : 25, 17 | "scope" : "{!objectName}", 18 | "showActionBar" : true, 19 | "showChartsPanel" : true, 20 | "showDisplay" : "showall", 21 | "showFilterPanel" : true, 22 | "showImageIcon" : true, 23 | "showManualRefreshButton" : true, 24 | "showObjectName" : true, 25 | "showPinnedList" : true, 26 | "showSearchBar" : true 27 | }, 28 | "componentName" : "forceCommunity:objectHome", 29 | "id" : "19652298-dac5-4730-8727-c4c1b8ce72f6", 30 | "renderPriority" : "NEUTRAL", 31 | "renditionMap" : { }, 32 | "type" : "component" 33 | } ], 34 | "id" : "35c2bb02-a9bd-4088-a7e9-16fcba82f1b4", 35 | "regionName" : "content", 36 | "type" : "region" 37 | }, { 38 | "id" : "1e2c68cf-452d-47ce-afcd-7bf572c4b4cc", 39 | "regionName" : "footer", 40 | "type" : "region" 41 | } ], 42 | "themeLayoutType" : "Inner", 43 | "type" : "view", 44 | "viewType" : "list" 45 | } -------------------------------------------------------------------------------- /force-app/main/default/pages/Exception.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |
7 |
8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 |
21 |
22 |
23 |
24 | 25 |
26 |
27 | 28 |
29 |
30 |
31 |
32 |
33 |
-------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/error.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "8e9a9b8a-c95c-4e51-bd61-fd246afbdade", 5 | "label" : "Error", 6 | "regions" : [ { 7 | "id" : "c54cdce8-0f45-4236-a9fb-6196d1a9070d", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "richTextValue" : "
Invalid Page
" 14 | }, 15 | "componentName" : "forceCommunity:richTextInline", 16 | "id" : "132cfbd6-6235-4a7d-a2d1-9050f7d51575", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | } ], 21 | "id" : "733fe8a2-8615-4327-9297-c9e58ae2f739", 22 | "regionName" : "content", 23 | "type" : "region" 24 | }, { 25 | "id" : "0d2c66d5-63f9-4df9-bb22-34f3f92cf7b0", 26 | "regionName" : "footer", 27 | "type" : "region" 28 | }, { 29 | "components" : [ { 30 | "componentAttributes" : { 31 | "customHeadTags" : "", 32 | "description" : "", 33 | "title" : "Error" 34 | }, 35 | "componentName" : "forceCommunity:seoAssistant", 36 | "id" : "5aa1962a-7f84-4814-a4e2-94dc008f0964", 37 | "renditionMap" : { }, 38 | "type" : "component" 39 | } ], 40 | "id" : "9b51c568-7252-4e44-9467-bf96d9a97037", 41 | "regionName" : "sfdcHiddenRegion", 42 | "type" : "region" 43 | } ], 44 | "themeLayoutType" : "Inner", 45 | "type" : "view", 46 | "viewType" : "error" 47 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/loginError.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "d62b8ef5-e94b-4bf8-ac88-fe469a8e8b56", 5 | "label" : "Login Error", 6 | "regions" : [ { 7 | "id" : "46c9dcc7-77a8-49f5-8e33-b2c100c8ed7f", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "richTextValue" : "
Invalid Page
" 14 | }, 15 | "componentName" : "forceCommunity:richTextInline", 16 | "id" : "ade157c2-ae9f-4a6d-9ff9-01feb6183637", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | } ], 21 | "id" : "b01a4c34-e86a-42e0-9711-6e6d3eddfc22", 22 | "regionName" : "content", 23 | "type" : "region" 24 | }, { 25 | "id" : "02ba0350-0bed-42ce-8b9c-acfce8027004", 26 | "regionName" : "footer", 27 | "type" : "region" 28 | }, { 29 | "components" : [ { 30 | "componentAttributes" : { 31 | "customHeadTags" : "", 32 | "description" : "", 33 | "title" : "Login Error" 34 | }, 35 | "componentName" : "forceCommunity:seoAssistant", 36 | "id" : "01e4e80b-dcc7-4a36-8515-95c7db5245c1", 37 | "renditionMap" : { }, 38 | "type" : "component" 39 | } ], 40 | "id" : "e4becf6d-cc77-4f47-b2d2-f66a5d8cd903", 41 | "regionName" : "sfdcHiddenRegion", 42 | "type" : "region" 43 | } ], 44 | "themeLayoutType" : "Login", 45 | "type" : "view", 46 | "viewType" : "login-error" 47 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/tooManyRequests.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "65cbd1f2-feec-427b-9b7a-523b74d1c1dc", 5 | "label" : "Too Many Requests", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { 9 | "richTextValue" : "

Looks like the site is experiencing higher than usual demand…

Don't go anywhere. We'll redirect you in a moment.

" 10 | }, 11 | "componentName" : "forceCommunity:htmlBlock", 12 | "id" : "0962950a-122d-4454-baf6-c77f6e2371ae", 13 | "renderPriority" : "NEUTRAL", 14 | "renditionMap" : { }, 15 | "type" : "component" 16 | }, { 17 | "componentAttributes" : { }, 18 | "componentName" : "forceCommunity:autoRefresh", 19 | "id" : "2e50731f-e0f4-4fa0-902d-fb2f085d147b", 20 | "renderPriority" : "NEUTRAL", 21 | "renditionMap" : { }, 22 | "type" : "component" 23 | } ], 24 | "id" : "091d7766-336b-4cb8-bb7d-aeac9fe48e6a", 25 | "regionName" : "content", 26 | "type" : "region" 27 | } ], 28 | "themeLayoutType" : "ServiceNotAvailable", 29 | "type" : "view", 30 | "viewType" : "too-many-requests" 31 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/groupDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "f620014f-f023-4ec5-aa32-b3bfc65c5167", 5 | "label" : "Group Detail", 6 | "regions" : [ { 7 | "id" : "c2210280-c16f-43c8-9dce-753431364d1c", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "detailsTabLabel" : "Details", 14 | "engagementManagersOnly" : false, 15 | "engagementTabLabel" : "Engagement", 16 | "feedTabLabel" : "Feed", 17 | "recordId" : "{!recordId}", 18 | "relatedTabLabel" : "Related" 19 | }, 20 | "componentName" : "forceCommunity:groupRecordHomeTabs", 21 | "id" : "29a89df6-c3e8-482d-8c28-3657cb1ed18f", 22 | "renderPriority" : "NEUTRAL", 23 | "renditionMap" : { }, 24 | "type" : "component" 25 | } ], 26 | "id" : "25b1e010-41bc-44b6-bcd7-e3a812bd5262", 27 | "regionName" : "content", 28 | "type" : "region" 29 | }, { 30 | "id" : "6b4fc889-8e50-4e42-8d41-1d2c77103aad", 31 | "regionName" : "footer", 32 | "type" : "region" 33 | }, { 34 | "components" : [ { 35 | "componentAttributes" : { 36 | "customHeadTags" : "", 37 | "description" : "", 38 | "title" : "{!Record._Object}: {!Record._Title}" 39 | }, 40 | "componentName" : "forceCommunity:seoAssistant", 41 | "id" : "2d41a7b2-8d90-4eda-8c3d-82c0ad58b713", 42 | "renditionMap" : { }, 43 | "type" : "component" 44 | } ], 45 | "id" : "4e251976-8243-486f-9983-615d71ee2244", 46 | "regionName" : "sfdcHiddenRegion", 47 | "type" : "region" 48 | } ], 49 | "themeLayoutType" : "Inner", 50 | "type" : "view", 51 | "viewType" : "detail-0F9" 52 | } -------------------------------------------------------------------------------- /force-app/main/default/pages/ForgotPassword.page: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 |
5 | 6 |
7 |
8 | 9 |
10 | 11 | 12 | 13 | 14 |
15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 |
27 |
28 |
29 | 30 |
31 |
32 |
33 |
34 |
35 |
36 |
-------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/userProfile.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "3b8fc4a4-ea58-4f66-99ee-62c017516019", 5 | "label" : "User Profile", 6 | "regions" : [ { 7 | "id" : "56752554-5659-4303-9e0f-14ace6caabfb", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "caseCreateLabel" : "Create Case", 14 | "caseFilterName" : "AllOpenCases", 15 | "caseHeaderLabel" : "My Cases", 16 | "casesTabLabel" : "Cases", 17 | "detailsTabLabel" : "Details", 18 | "feedTabLabel" : "Feed", 19 | "knowledgeableAboutTitle" : "Knows About", 20 | "maxTopics" : 5, 21 | "recognitionbuttonLabel" : "Give", 22 | "relatedTabLabel" : "Related", 23 | "showAllUpdates" : false, 24 | "showBadges" : true, 25 | "showFullPhotoAsCircle" : true, 26 | "showKnowledgeableAbout" : true, 27 | "showRelatedList" : true, 28 | "showReputationInInfluenceCard" : false, 29 | "showStats" : true, 30 | "userBadgesTitle" : "Recognition Badges", 31 | "userId" : "{!recordId}", 32 | "userStatsTitle" : "Influence" 33 | }, 34 | "componentName" : "forceCommunity:userRecordHome", 35 | "id" : "f5a76a0f-2ae0-4dc5-8639-e9e9d7225e0b", 36 | "renderPriority" : "NEUTRAL", 37 | "renditionMap" : { }, 38 | "type" : "component" 39 | } ], 40 | "id" : "0745a209-a668-405b-a8a8-7d09a835b408", 41 | "regionName" : "content", 42 | "type" : "region" 43 | }, { 44 | "id" : "96c1a3c5-105d-4f87-b5b0-9f6dd9c60003", 45 | "regionName" : "footer", 46 | "type" : "region" 47 | } ], 48 | "themeLayoutType" : "Inner", 49 | "type" : "view", 50 | "viewType" : "detail-005" 51 | } -------------------------------------------------------------------------------- /force-app/main/default/sites/Salto_Support.site-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | false 5 | false 6 | false 7 | false 8 | true 9 | false 10 | CommunitiesLogin 11 | BandwidthExceeded 12 | true 13 | true 14 | SameOriginOnly 15 | true 16 | true 17 | FileNotFound 18 | ForgotPassword 19 | Exception 20 | InMaintenance 21 | CommunitiesLanding 22 | Salto Support 23 | false 24 | true 25 | CommunitiesSelfReg 26 | pgonzaleznetwork@brave-raccoon-mm7crl.com 27 | pgonzaleznetwork@brave-raccoon-mm7crl.com 28 | ChatterNetwork 29 | saltotest-developer-edition 30 | saltosupport 31 | 32 | -------------------------------------------------------------------------------- /force-app/main/default/pages/CommunitiesSelfReg.page: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 |
24 |
25 |
26 |
27 | 28 |
-------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/userSettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "6d4dd45c-7af5-4939-89b5-056c2b583e65", 5 | "label" : "User Settings", 6 | "regions" : [ { 7 | "id" : "684228f4-a9c4-456f-b36f-67bfefa7d364", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "accountSectionTitle" : "Account", 14 | "accountTabName" : "Account Details", 15 | "connectedSourcesTabName" : "Connected Sources", 16 | "emailNotificationsTitle" : "Email Notifications", 17 | "emailSectionDescText" : "When email notifications are enabled, email me when someone:", 18 | "hideChatterNotificationSettings" : false, 19 | "hideConnectedSources" : false, 20 | "hideEmailNotificationSettings" : false, 21 | "hideProfileVisibilitySettings" : false, 22 | "id" : "{!recordId}", 23 | "locationTitle" : "Location", 24 | "profileSectionDescText" : "Customize who is able to see what on your profile page", 25 | "profileSectionToolTipText" : "Restricted: Visible to the employees of the company that created the site. Members: Visible to logged-in members. Public: Visible to anyone viewing pages that don't require login.", 26 | "profileVisibilityTitle" : "Profile Visibility", 27 | "settingsPageTitle" : "My Settings" 28 | }, 29 | "componentName" : "forceCommunity:userSettingsCustomizable", 30 | "id" : "8ecfbcc7-4585-4585-a0b5-b01a11a933ee", 31 | "renderPriority" : "NEUTRAL", 32 | "renditionMap" : { }, 33 | "type" : "component" 34 | } ], 35 | "id" : "b798bf40-8b74-4327-9f6e-40421c9aeb65", 36 | "regionName" : "content", 37 | "type" : "region" 38 | }, { 39 | "id" : "50ca5249-3ec3-43c8-89e2-5c4693b4dcb0", 40 | "regionName" : "footer", 41 | "type" : "region" 42 | } ], 43 | "themeLayoutType" : "Inner", 44 | "type" : "view", 45 | "viewType" : "usersettings" 46 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/topArticles.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "78ca6586-b9cf-43d9-9a7a-ac9217d370fc", 5 | "label" : "Top Articles", 6 | "regions" : [ { 7 | "id" : "d2fb5f51-1a29-4928-87b9-631a00dbafa8", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "richTextValue" : "

Top Articles

" 14 | }, 15 | "componentName" : "forceCommunity:richTextInline", 16 | "id" : "b2dc6ee2-e903-47f4-9704-9947f693feab", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | }, { 21 | "componentAttributes" : { 22 | "numberOfArticles" : 5, 23 | "showTitle" : true, 24 | "title" : "Articles", 25 | "topicList" : [ ] 26 | }, 27 | "componentName" : "forceCommunity:topArticleList", 28 | "id" : "a9d055a3-465b-4dba-bb44-96a2b50b9b18", 29 | "renderPriority" : "NEUTRAL", 30 | "renditionMap" : { }, 31 | "type" : "component" 32 | } ], 33 | "id" : "3c1006e6-dc0d-4cd4-b13c-19dd005bac0c", 34 | "regionName" : "content", 35 | "type" : "region" 36 | }, { 37 | "id" : "e6178542-f80d-40d7-8063-a257c4190571", 38 | "regionName" : "footer", 39 | "type" : "region" 40 | }, { 41 | "components" : [ { 42 | "componentAttributes" : { 43 | "customHeadTags" : "", 44 | "description" : "", 45 | "title" : "Top Articles" 46 | }, 47 | "componentName" : "forceCommunity:seoAssistant", 48 | "id" : "c220dca3-e245-47e2-b793-73b07fd5b70a", 49 | "renditionMap" : { }, 50 | "type" : "component" 51 | } ], 52 | "id" : "db57e0fb-9c8c-45ee-a0ef-1243130a6efc", 53 | "regionName" : "sfdcHiddenRegion", 54 | "type" : "region" 55 | } ], 56 | "themeLayoutType" : "Inner", 57 | "type" : "view", 58 | "viewType" : "top-articles" 59 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/caseDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "bc4f6e5c-be4b-4675-baf7-704d1c06600b", 5 | "label" : "Case Detail", 6 | "regions" : [ { 7 | "id" : "d0437d04-a8f1-4699-9ec9-0b1798ee3ff4", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "recordId" : "{!recordId}" 14 | }, 15 | "componentName" : "forceCommunity:recordHeadline", 16 | "id" : "a5077642-d1ca-4d8b-bad9-db61751f37af", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | }, { 21 | "componentAttributes" : { 22 | "detailsTabLabel" : "Details", 23 | "discussionsTabLabel" : "Feed", 24 | "recordId" : "{!recordId}", 25 | "relatedTabLabel" : "Related", 26 | "tab1Type" : "details", 27 | "tab2Type" : "related", 28 | "tab3Type" : "chatter", 29 | "tab4Type" : "none", 30 | "timelineTabLabel" : "Activity" 31 | }, 32 | "componentName" : "forceCommunity:recordHomeTabs", 33 | "id" : "ec08d463-4b7a-442e-9ba7-5ec44006f78e", 34 | "renderPriority" : "NEUTRAL", 35 | "renditionMap" : { }, 36 | "type" : "component" 37 | } ], 38 | "id" : "80e87ffa-b610-4c82-baac-926929d604c2", 39 | "regionName" : "content", 40 | "type" : "region" 41 | }, { 42 | "id" : "1c888bb1-8931-434a-b48e-9d722415faf5", 43 | "regionName" : "footer", 44 | "type" : "region" 45 | }, { 46 | "components" : [ { 47 | "componentAttributes" : { 48 | "customHeadTags" : "", 49 | "description" : "", 50 | "title" : "{!Record._Object}: {!Record._Title}" 51 | }, 52 | "componentName" : "forceCommunity:seoAssistant", 53 | "id" : "566c7aa2-e127-411d-86f7-d96f026d8f3b", 54 | "renditionMap" : { }, 55 | "type" : "component" 56 | } ], 57 | "id" : "265613f8-fa18-4a2c-ae76-03ef49a00e8c", 58 | "regionName" : "sfdcHiddenRegion", 59 | "type" : "region" 60 | } ], 61 | "themeLayoutType" : "Inner", 62 | "type" : "view", 63 | "viewType" : "detail-500" 64 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/recordDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "cb7e242f-7079-43a3-a6e1-5873bd6427ed", 5 | "label" : "Record Detail", 6 | "regions" : [ { 7 | "id" : "fc6ada11-0901-4557-8a7b-20bb900d7fa9", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "recordId" : "{!recordId}" 14 | }, 15 | "componentName" : "forceCommunity:recordHeadline", 16 | "id" : "785bf948-edd9-4793-bea6-d90ce2fe83fd", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | }, { 21 | "componentAttributes" : { 22 | "detailsTabLabel" : "Details", 23 | "discussionsTabLabel" : "Feed", 24 | "recordId" : "{!recordId}", 25 | "relatedTabLabel" : "Related", 26 | "tab1Type" : "details", 27 | "tab2Type" : "related", 28 | "tab3Type" : "chatter", 29 | "tab4Type" : "none", 30 | "timelineTabLabel" : "Activity" 31 | }, 32 | "componentName" : "forceCommunity:recordHomeTabs", 33 | "id" : "1f589fb6-d23b-42c8-8364-329af1faa33e", 34 | "renderPriority" : "NEUTRAL", 35 | "renditionMap" : { }, 36 | "type" : "component" 37 | } ], 38 | "id" : "01dd2534-72a7-4628-87b5-a7e716ae9a35", 39 | "regionName" : "content", 40 | "type" : "region" 41 | }, { 42 | "id" : "87d417d5-2653-4aa0-acaf-4c5c6e88a0e3", 43 | "regionName" : "footer", 44 | "type" : "region" 45 | }, { 46 | "components" : [ { 47 | "componentAttributes" : { 48 | "customHeadTags" : "", 49 | "description" : "", 50 | "title" : "{!Record._Object}: {!Record._Title}" 51 | }, 52 | "componentName" : "forceCommunity:seoAssistant", 53 | "id" : "2f7a87c5-4656-49d0-a3d4-89cf0e08e4a7", 54 | "renditionMap" : { }, 55 | "type" : "component" 56 | } ], 57 | "id" : "634d9797-cb74-4560-91dd-40405c8626a5", 58 | "regionName" : "sfdcHiddenRegion", 59 | "type" : "region" 60 | } ], 61 | "themeLayoutType" : "Inner", 62 | "type" : "view", 63 | "viewType" : "detail" 64 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/checkPassword.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "63bb4348-e854-49c2-be62-d6d5e22fb0fa", 5 | "label" : "Check Password", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { 9 | "richTextValue" : "
NOW, CHECK YOUR EMAIL
" 10 | }, 11 | "componentName" : "forceCommunity:richTextInline", 12 | "id" : "8e90253f-cfac-4908-bca6-87d44d84b1c8", 13 | "renderPriority" : "NEUTRAL", 14 | "renditionMap" : { }, 15 | "type" : "component" 16 | }, { 17 | "componentAttributes" : { 18 | "richTextValue" : "
Check the email account associated with your user name for instructions on resetting your password. Remember to look in your spam folder, where automated messages sometimes filter. If you still can't log in, contact your administrator.
" 19 | }, 20 | "componentName" : "forceCommunity:richTextInline", 21 | "id" : "d6057fe2-391b-4c70-b721-b36cf58187aa", 22 | "renderPriority" : "NEUTRAL", 23 | "renditionMap" : { }, 24 | "type" : "component" 25 | }, { 26 | "componentAttributes" : { 27 | "richTextValue" : "
Back to login
" 28 | }, 29 | "componentName" : "forceCommunity:richTextInline", 30 | "id" : "3a3b7b9a-5c93-495e-be1a-dac09e26686e", 31 | "renderPriority" : "NEUTRAL", 32 | "renditionMap" : { }, 33 | "type" : "component" 34 | } ], 35 | "id" : "00839389-8495-41bc-87d8-43d7b9a718c0", 36 | "regionName" : "content", 37 | "type" : "region" 38 | }, { 39 | "components" : [ { 40 | "componentAttributes" : { 41 | "customHeadTags" : "", 42 | "description" : "", 43 | "title" : "Check Password" 44 | }, 45 | "componentName" : "forceCommunity:seoAssistant", 46 | "id" : "4cb76bc6-6a6f-4a4e-97da-e9034b08c081", 47 | "renditionMap" : { }, 48 | "type" : "component" 49 | } ], 50 | "id" : "d570b903-813a-42fa-b3f1-46ba95b39869", 51 | "regionName" : "sfdcHiddenRegion", 52 | "type" : "region" 53 | } ], 54 | "themeLayoutType" : "Login", 55 | "type" : "view", 56 | "viewType" : "check-password" 57 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/login.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "b266cd71-ffb7-4eb9-9bde-d75c0562e36a", 5 | "label" : "Login", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { }, 9 | "componentName" : "salesforceIdentity:communityLogo2", 10 | "id" : "b9bc652f-17d0-436d-b15d-9bd01d30cc9d", 11 | "renderPriority" : "NEUTRAL", 12 | "renditionMap" : { }, 13 | "type" : "component" 14 | }, { 15 | "componentAttributes" : { 16 | "forgotPasswordLabel" : "Forgot your password?", 17 | "forgotPasswordUrl" : "/ForgotPassword", 18 | "loginButtonLabel" : "Log in", 19 | "passwordLabel" : "Password", 20 | "selfRegisterLabel" : "Not a member?", 21 | "selfRegisterUrl" : "/SelfRegister", 22 | "startUrl" : "", 23 | "usernameLabel" : "Username" 24 | }, 25 | "componentName" : "salesforceIdentity:loginForm2", 26 | "id" : "8ee2e19a-dbeb-40b3-bac2-894ee550bc97", 27 | "renderPriority" : "NEUTRAL", 28 | "renditionMap" : { }, 29 | "type" : "component" 30 | }, { 31 | "componentAttributes" : { 32 | "headerText" : "", 33 | "showHeader" : false, 34 | "useCommunityDomainSso" : false 35 | }, 36 | "componentName" : "salesforceIdentity:socialLogin2", 37 | "id" : "5c1d6432-f5c8-4f80-92a9-07493af1e558", 38 | "renderPriority" : "NEUTRAL", 39 | "renditionMap" : { }, 40 | "type" : "component" 41 | }, { 42 | "componentAttributes" : { 43 | "employeeLoginLinkLabel" : "Are you an employee? Login here" 44 | }, 45 | "componentName" : "salesforceIdentity:employeeLoginLink2", 46 | "id" : "7919eb94-fa5f-4680-a2bb-8a6193d6361a", 47 | "renderPriority" : "NEUTRAL", 48 | "renditionMap" : { }, 49 | "type" : "component" 50 | } ], 51 | "id" : "3516e0f4-1e79-4c89-a0f5-12da7d130278", 52 | "regionName" : "content", 53 | "type" : "region" 54 | }, { 55 | "components" : [ { 56 | "componentAttributes" : { 57 | "customHeadTags" : "", 58 | "description" : "", 59 | "title" : "Login" 60 | }, 61 | "componentName" : "forceCommunity:seoAssistant", 62 | "id" : "686eb705-9a8d-4bbc-af73-2f89722fb763", 63 | "renditionMap" : { }, 64 | "type" : "component" 65 | } ], 66 | "id" : "852e0948-5524-4fce-8737-87ba34c1367f", 67 | "regionName" : "sfdcHiddenRegion", 68 | "type" : "region" 69 | } ], 70 | "themeLayoutType" : "Login", 71 | "type" : "view", 72 | "viewType" : "login-home" 73 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/forgotPassword.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "302538ef-e266-4ad2-a003-5eb580926543", 5 | "label" : "Forgot Password", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { 9 | "richTextValue" : "
PASSWORD RESET
" 10 | }, 11 | "componentName" : "forceCommunity:richTextInline", 12 | "id" : "c4f4292c-0581-4b2c-bb21-e71bb367a67c", 13 | "renderPriority" : "NEUTRAL", 14 | "renditionMap" : { }, 15 | "type" : "component" 16 | }, { 17 | "componentAttributes" : { 18 | "richTextValue" : "
To reset your password, we'll need your username.
We'll send password reset instructions to the email address associated with your account.
" 19 | }, 20 | "componentName" : "forceCommunity:richTextInline", 21 | "id" : "7b03729c-f977-45c9-96dc-70e16635210a", 22 | "renderPriority" : "NEUTRAL", 23 | "renditionMap" : { }, 24 | "type" : "component" 25 | }, { 26 | "componentAttributes" : { 27 | "checkEmailUrl" : "./CheckPasswordResetEmail", 28 | "submitButtonLabel" : "Reset Password", 29 | "usernameLabel" : "Username" 30 | }, 31 | "componentName" : "salesforceIdentity:forgotPassword2", 32 | "id" : "74436a67-4ad2-427a-af59-5a57609afcfc", 33 | "renderPriority" : "NEUTRAL", 34 | "renditionMap" : { }, 35 | "type" : "component" 36 | }, { 37 | "componentAttributes" : { 38 | "richTextValue" : "
Cancel
" 39 | }, 40 | "componentName" : "forceCommunity:richTextInline", 41 | "id" : "ac2b321d-799c-4c82-a435-fd3bee803823", 42 | "renderPriority" : "NEUTRAL", 43 | "renditionMap" : { }, 44 | "type" : "component" 45 | } ], 46 | "id" : "26abdf94-5043-4fea-9548-4705ee640435", 47 | "regionName" : "content", 48 | "type" : "region" 49 | }, { 50 | "components" : [ { 51 | "componentAttributes" : { 52 | "customHeadTags" : "", 53 | "description" : "", 54 | "title" : "Forgot Password" 55 | }, 56 | "componentName" : "forceCommunity:seoAssistant", 57 | "id" : "053be1ba-39c6-4a0c-92a5-d74ef9ab3178", 58 | "renditionMap" : { }, 59 | "type" : "component" 60 | } ], 61 | "id" : "6b79c5d5-67ec-455a-9da8-527f407d8ad0", 62 | "regionName" : "sfdcHiddenRegion", 63 | "type" : "region" 64 | } ], 65 | "themeLayoutType" : "Login", 66 | "type" : "view", 67 | "viewType" : "forgot-password" 68 | } -------------------------------------------------------------------------------- /manifest/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Salto Support 5 | Network 6 | 7 | 8 | Salto_Support 9 | CustomSite 10 | 11 | 12 | Salto_Support1 13 | ExperienceBundle 14 | 15 | 16 | CommunitiesLogin 17 | BandwidthExceeded 18 | FileNotFound 19 | ForgotPassword 20 | Exception 21 | InMaintenance 22 | CommunitiesLanding 23 | CommunitiesSelfReg 24 | ApexPage 25 | 26 | 27 | customCommunityComponent 28 | LightningComponentBundle 29 | 30 | 31 | Create_a_Case_Custom 32 | Flow 33 | 34 | 35 | Salto Support 36 | ManagedTopics 37 | 38 | 39 | VIP_Customers 40 | Audience 41 | 42 | 43 | Account.CustomerPriority__c 44 | Case.Original_Deal__c 45 | Contact.OtherAccountId__c 46 | Opportunity.DeliveryInstallationStatus__c 47 | Knowledge__kav.Content__c 48 | CustomField 49 | 50 | 51 | Share_cases_with_users 52 | SharingSet 53 | 54 | 55 | unfiled$public/CommunityChangePasswordEmailTemplate 56 | unfiled$public/CommunityChangePasswordEmailTemplate 57 | unfiled$public/ExperienceCloudSelfRegMicroBatchSubErrorEmailTemplate 58 | unfiled$public/CommunityChgEmailVerOldTemplate 59 | unfiled$public/SUPPORTSelfServiceNewCommentNotificationSAMPLE 60 | unfiled$public/CommunityForgotPasswordEmailTemplate 61 | unfiled$public/CommunityChgEmailVerNewTemplate 62 | unfiled$public/ExperienceCloudSelfRegMicroBatchSubErrorEmailTemplate 63 | unfiled$public/CommunityLockoutEmailTemplate 64 | unfiled$public/CommunityWelcomeEmailTemplate 65 | EmailTemplate 66 | 67 | 68 | SFDC_Default_Navigation_Salto Support 69 | NavigationMenu 70 | 71 | 55.0 72 | -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/brandingSets/customerService.json: -------------------------------------------------------------------------------- 1 | { 2 | "definitionName" : "service:branding-service", 3 | "id" : "420e1654-990c-4112-ac03-36932f28be75", 4 | "label" : "Customer Service", 5 | "type" : "brandingSet", 6 | "values" : { 7 | "ActionColor" : "#2574A9", 8 | "BorderColor" : "#D4D4D4", 9 | "CardBackgroundColor" : "rgba(255, 255, 255, 0)", 10 | "CompanyLogo" : "", 11 | "DetailTextColor" : "#696969", 12 | "ErrorFontColor" : "#ff9e9e", 13 | "HeaderFonts" : "Montserrat", 14 | "HeaderImage" : "", 15 | "LinkColor" : "#2574A9", 16 | "LoginBackgroundColor" : "#F4F4F4", 17 | "LoginBackgroundImage" : "../../../../sfsites/picasso/core/external/salesforceIdentity/images/background.jpg?v=1", 18 | "OverlayTextColor" : "#FFFFFF", 19 | "PageBackgroundColor" : "#FFFFFF", 20 | "PrimaryFont" : "Lato", 21 | "TextColor" : "#333", 22 | "TextTransformStyle" : "uppercase", 23 | "_ActionColorDarker" : "#135F90", 24 | "_ActionColorTrans" : "rgba(25, 124, 190, 0.9)", 25 | "_BackgroundColor1" : "rgb(235, 235, 235)", 26 | "_BackgroundColor2" : "rgb(194, 194, 194)", 27 | "_BackgroundColor3" : "rgb(133, 133, 133)", 28 | "_ColorBackgroundTransparent" : "rgba(255, 255, 255, 0.0)", 29 | "_ColorBackgroundWhite" : "#FFFFFF", 30 | "_DxpPageBackgroundColor" : "#FFFFFF", 31 | "_HoverColor" : "rgba(25, 124, 190, 0.05)", 32 | "_LinkColorDarker" : "#135F90", 33 | "_NeutralColor" : "#ecebea", 34 | "_NeutralColor1" : "rgb(217, 215, 213)", 35 | "_NeutralColor2" : "rgb(178, 174, 170)", 36 | "_NeutralColor3" : "rgb(118, 113, 107)", 37 | "_NeutralForegroundColor" : "#000", 38 | "_NeutralForegroundColor1" : "#000", 39 | "_NeutralForegroundColor2" : "#000", 40 | "_NeutralForegroundColor3" : "#fff", 41 | "_OverlayTextColorShadow" : "#000000", 42 | "_PrimaryAccentColor1" : "rgb(30, 93, 136)", 43 | "_PrimaryAccentColor2" : "rgb(15, 47, 69)", 44 | "_PrimaryAccentColor3" : "rgb(0, 0, 0)", 45 | "_PrimaryAccentForegroundColor1" : "rgb(255, 255, 255)", 46 | "_PrimaryAccentForegroundColor2" : "rgb(255, 255, 255)", 47 | "_PrimaryAccentForegroundColor3" : "rgb(255, 255, 255)", 48 | "_TextColor1" : "rgb(31, 31, 31)", 49 | "_TextColor2" : "rgb(0, 0, 0)", 50 | "_TextColor3" : "rgb(0, 0, 0)", 51 | "_brandNavigationBarBackgroundColor" : "rgba(128,128,128,.75)", 52 | "_brandNavigationItemBackgroundColorHover" : "rgba(0,0,0,.2)", 53 | "_brandNavigationItemDividerColor" : "rgba(255, 255, 255, 0.2)", 54 | "_desktopFontSizeLarge" : "1rem", 55 | "_desktopFontSizeMedium" : "0.8125rem", 56 | "_desktopFontSizeMediumA" : "0.875rem", 57 | "_desktopFontSizeSmall" : "0.75rem", 58 | "_desktopFontSizeXLarge" : "1.25rem", 59 | "_desktopFontSizeXxLarge" : "1.75rem", 60 | "_desktopLineHeightText" : "1.5", 61 | "_desktopSquareIconMedium" : "2rem", 62 | "brandNavigationBackgroundColor" : "rgb(128,128,128)", 63 | "brandNavigationBarBackgroundColor" : "rgba(128,128,128,.75)", 64 | "brandNavigationColorText" : "#FFFFFF" 65 | } 66 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/brandingSets/vIPCustomersBranding.json: -------------------------------------------------------------------------------- 1 | { 2 | "definitionName" : "service:branding-service", 3 | "id" : "6f9a85f4-27dd-4b7d-a6eb-353e73a923a5", 4 | "label" : "VIP Customers Branding", 5 | "type" : "brandingSet", 6 | "values" : { 7 | "ActionColor" : "#2574A9", 8 | "BorderColor" : "#D4D4D4", 9 | "CardBackgroundColor" : "rgba(255, 255, 255, 0)", 10 | "CompanyLogo" : "", 11 | "DetailTextColor" : "#696969", 12 | "ErrorFontColor" : "#ff9e9e", 13 | "HeaderFonts" : "Montserrat", 14 | "HeaderImage" : "", 15 | "LinkColor" : "#2574A9", 16 | "LoginBackgroundColor" : "#F4F4F4", 17 | "LoginBackgroundImage" : "../../../../sfsites/picasso/core/external/salesforceIdentity/images/background.jpg?v=1", 18 | "OverlayTextColor" : "#FFFFFF", 19 | "PageBackgroundColor" : "#FFFFFF", 20 | "PrimaryFont" : "Lato", 21 | "TextColor" : "#333", 22 | "TextTransformStyle" : "uppercase", 23 | "_ActionColorDarker" : "#135F90", 24 | "_ActionColorTrans" : "rgba(25, 124, 190, 0.9)", 25 | "_BackgroundColor1" : "rgb(235, 235, 235)", 26 | "_BackgroundColor2" : "rgb(194, 194, 194)", 27 | "_BackgroundColor3" : "rgb(133, 133, 133)", 28 | "_ColorBackgroundTransparent" : "rgba(255, 255, 255, 0.0)", 29 | "_ColorBackgroundWhite" : "#FFFFFF", 30 | "_DxpPageBackgroundColor" : "#FFFFFF", 31 | "_HoverColor" : "rgba(25, 124, 190, 0.05)", 32 | "_LinkColorDarker" : "#135F90", 33 | "_NeutralColor" : "#ecebea", 34 | "_NeutralColor1" : "rgb(217, 215, 213)", 35 | "_NeutralColor2" : "rgb(178, 174, 170)", 36 | "_NeutralColor3" : "rgb(118, 113, 107)", 37 | "_NeutralForegroundColor" : "#000", 38 | "_NeutralForegroundColor1" : "#000", 39 | "_NeutralForegroundColor2" : "#000", 40 | "_NeutralForegroundColor3" : "#fff", 41 | "_OverlayTextColorShadow" : "#000000", 42 | "_PrimaryAccentColor1" : "rgb(30, 93, 136)", 43 | "_PrimaryAccentColor2" : "rgb(15, 47, 69)", 44 | "_PrimaryAccentColor3" : "rgb(0, 0, 0)", 45 | "_PrimaryAccentForegroundColor1" : "rgb(255, 255, 255)", 46 | "_PrimaryAccentForegroundColor2" : "rgb(255, 255, 255)", 47 | "_PrimaryAccentForegroundColor3" : "rgb(255, 255, 255)", 48 | "_TextColor1" : "rgb(31, 31, 31)", 49 | "_TextColor2" : "rgb(0, 0, 0)", 50 | "_TextColor3" : "rgb(0, 0, 0)", 51 | "_brandNavigationBarBackgroundColor" : "rgba(128,128,128,.75)", 52 | "_brandNavigationItemBackgroundColorHover" : "rgba(0,0,0,.2)", 53 | "_brandNavigationItemDividerColor" : "rgba(255, 255, 255, 0.2)", 54 | "_desktopFontSizeLarge" : "1rem", 55 | "_desktopFontSizeMedium" : "0.8125rem", 56 | "_desktopFontSizeMediumA" : "0.875rem", 57 | "_desktopFontSizeSmall" : "0.75rem", 58 | "_desktopFontSizeXLarge" : "1.25rem", 59 | "_desktopFontSizeXxLarge" : "1.75rem", 60 | "_desktopLineHeightText" : "1.5", 61 | "_desktopSquareIconMedium" : "2rem", 62 | "brandNavigationBackgroundColor" : "rgb(128,128,128)", 63 | "brandNavigationBarBackgroundColor" : "rgba(128,128,128,.75)", 64 | "brandNavigationColorText" : "#FFFFFF" 65 | } 66 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/reportDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "ae55e59c-afe4-4b20-8587-f6763dafbc8b", 5 | "label" : "Report Detail", 6 | "regions" : [ { 7 | "id" : "ae59e6a8-c092-4fe5-bec1-fa4d8cbeb627", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "recordId" : "{!recordId}" 14 | }, 15 | "componentName" : "forceCommunity:reportPage", 16 | "id" : "98e98476-ae25-4f04-ad87-ff2689cfe7af", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | } ], 21 | "id" : "fc8e9d5b-c69f-42fd-93a3-62f16ccc0ede", 22 | "regionName" : "content", 23 | "type" : "region" 24 | }, { 25 | "components" : [ { 26 | "componentAttributes" : { 27 | "askCommunityLabel" : "Ask a Question", 28 | "buttonBgColor" : "", 29 | "buttonBgHoverColor" : "", 30 | "buttonBorderColor" : "", 31 | "buttonRadius" : 0, 32 | "buttonTextColor" : "", 33 | "buttonTextHoverColor" : "", 34 | "buttonTwoBgColor" : "", 35 | "buttonTwoBgHoverColor" : "", 36 | "buttonTwoBorderColor" : "", 37 | "buttonTwoRadius" : 0, 38 | "buttonTwoTextColor" : "", 39 | "buttonTwoTextHoverColor" : "", 40 | "confirmationMessage" : "Got it!", 41 | "contactSupportLabel" : "Contact Support", 42 | "followUpPromptLabel" : "Can we close your question?", 43 | "headerLabel" : "Don't see what you're looking for?", 44 | "isAskFollowPromptEnabled" : true, 45 | "isIncludeArticlesEnabled" : false, 46 | "isIncludeDiscussionsEnabled" : true, 47 | "isInitialSatisfactionPromptEnabled" : true, 48 | "isPublisherDeflectionEnabled" : true, 49 | "maxSuggestions" : 5, 50 | "satisfactionPromptLabel" : "Did we help to answer your question?", 51 | "showDetails" : false, 52 | "showTopics" : true 53 | }, 54 | "componentName" : "siteforce:napiliFooter", 55 | "id" : "a362363f-13ae-447e-8290-8ee4ea27a324", 56 | "renderPriority" : "NEUTRAL", 57 | "renditionMap" : { }, 58 | "type" : "component" 59 | } ], 60 | "id" : "1981757a-8d46-4772-8215-374370d32f8a", 61 | "regionName" : "footer", 62 | "type" : "region" 63 | }, { 64 | "components" : [ { 65 | "componentAttributes" : { 66 | "customHeadTags" : "", 67 | "description" : "", 68 | "title" : "{!Record._Object}: {!Record._Title}" 69 | }, 70 | "componentName" : "forceCommunity:seoAssistant", 71 | "id" : "6660e5a1-9363-403b-8ca0-58d02e74a599", 72 | "renditionMap" : { }, 73 | "type" : "component" 74 | } ], 75 | "id" : "3989adce-9933-4f3c-8205-1cba8198ffb8", 76 | "regionName" : "sfdcHiddenRegion", 77 | "type" : "region" 78 | } ], 79 | "themeLayoutType" : "Inner", 80 | "type" : "view", 81 | "viewType" : "detail-00O" 82 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/CommunitiesSelfRegController.cls: -------------------------------------------------------------------------------- 1 | /** 2 | * An apex page controller that supports self registration of users in communities that allow self registration 3 | */ 4 | public class CommunitiesSelfRegController { 5 | 6 | public String firstName {get; set;} 7 | public String lastName {get; set;} 8 | public String email {get; set;} 9 | public String password {get; set {password = value == null ? value : value.trim(); } } 10 | public String confirmPassword {get; set { confirmPassword = value == null ? value : value.trim(); } } 11 | public String communityNickname {get; set { communityNickname = value == null ? value : value.trim(); } } 12 | 13 | public CommunitiesSelfRegController() { 14 | String expid = ApexPages.currentPage().getParameters().get('expid'); 15 | if (expId != null) { 16 | Site.setExperienceId(expId); 17 | } 18 | } 19 | 20 | private boolean isValidPassword() { 21 | return password == confirmPassword; 22 | } 23 | 24 | public PageReference registerUser() { 25 | 26 | // it's okay if password is null - we'll send the user a random password in that case 27 | if (!isValidPassword()) { 28 | ApexPages.Message msg = new ApexPages.Message(ApexPages.Severity.ERROR, Label.site.passwords_dont_match); 29 | ApexPages.addMessage(msg); 30 | return null; 31 | } 32 | 33 | String profileId = null; // To be filled in by customer. 34 | String roleEnum = null; // To be filled in by customer. 35 | String accountId = ''; // To be filled in by customer. 36 | 37 | String userName = email; 38 | 39 | User u = new User(); 40 | u.Username = userName; 41 | u.Email = email; 42 | u.FirstName = firstName; 43 | u.LastName = lastName; 44 | u.CommunityNickname = communityNickname; 45 | u.ProfileId = profileId; 46 | 47 | String userId; 48 | 49 | try { 50 | userId = Site.createExternalUser(u, accountId, password); 51 | } catch(Site.ExternalUserCreateException ex) { 52 | List errors = ex.getDisplayMessages(); 53 | for (String error : errors) { 54 | ApexPages.addMessage(new ApexPages.Message(ApexPages.Severity.ERROR, error)); 55 | } 56 | 57 | // This message is used for debugging. Do not display this in the UI to the end user. 58 | // It has the information around why the user creation failed. 59 | System.debug(ex.getMessage()); 60 | } 61 | 62 | if (userId != null) { 63 | if (password != null && password.length() > 1) { 64 | return Site.login(userName, password, ApexPages.currentPage().getParameters().get('startURL')); 65 | } 66 | else { 67 | PageReference page = System.Page.CommunitiesSelfRegConfirm; 68 | page.setRedirect(true); 69 | return page; 70 | } 71 | } 72 | return null; 73 | } 74 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/dashboardDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "ad7f3ca9-8cd0-43a5-982c-cfb3221f9af0", 5 | "label" : "Dashboard Detail", 6 | "regions" : [ { 7 | "id" : "c4679c82-2fd0-4bb9-b786-01c9b9351311", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "height" : "1065", 14 | "recordId" : "{!recordId}" 15 | }, 16 | "componentName" : "forceCommunity:dashboard", 17 | "id" : "0ce0751e-71d9-4a32-a67c-fe0203693d0d", 18 | "renderPriority" : "NEUTRAL", 19 | "renditionMap" : { }, 20 | "type" : "component" 21 | } ], 22 | "id" : "bbe24554-f95d-49c9-a5b2-6e20b152403b", 23 | "regionName" : "content", 24 | "type" : "region" 25 | }, { 26 | "components" : [ { 27 | "componentAttributes" : { 28 | "askCommunityLabel" : "Ask a Question", 29 | "buttonBgColor" : "", 30 | "buttonBgHoverColor" : "", 31 | "buttonBorderColor" : "", 32 | "buttonRadius" : 0, 33 | "buttonTextColor" : "", 34 | "buttonTextHoverColor" : "", 35 | "buttonTwoBgColor" : "", 36 | "buttonTwoBgHoverColor" : "", 37 | "buttonTwoBorderColor" : "", 38 | "buttonTwoRadius" : 0, 39 | "buttonTwoTextColor" : "", 40 | "buttonTwoTextHoverColor" : "", 41 | "confirmationMessage" : "Got it!", 42 | "contactSupportLabel" : "Contact Support", 43 | "followUpPromptLabel" : "Can we close your question?", 44 | "headerLabel" : "Don't see what you're looking for?", 45 | "isAskFollowPromptEnabled" : true, 46 | "isIncludeArticlesEnabled" : false, 47 | "isIncludeDiscussionsEnabled" : true, 48 | "isInitialSatisfactionPromptEnabled" : true, 49 | "isPublisherDeflectionEnabled" : true, 50 | "maxSuggestions" : 5, 51 | "satisfactionPromptLabel" : "Did we help to answer your question?", 52 | "showDetails" : false, 53 | "showTopics" : true 54 | }, 55 | "componentName" : "siteforce:napiliFooter", 56 | "id" : "77c7f98a-9a28-4e96-b0a0-6cb68d39618c", 57 | "renderPriority" : "NEUTRAL", 58 | "renditionMap" : { }, 59 | "type" : "component" 60 | } ], 61 | "id" : "913609da-8d0e-4692-8562-0c35223bde6f", 62 | "regionName" : "footer", 63 | "type" : "region" 64 | }, { 65 | "components" : [ { 66 | "componentAttributes" : { 67 | "customHeadTags" : "", 68 | "description" : "", 69 | "title" : "{!Record._Object}: {!Record._Title}" 70 | }, 71 | "componentName" : "forceCommunity:seoAssistant", 72 | "id" : "376fc8bf-5391-4fdb-b81a-87c585539624", 73 | "renditionMap" : { }, 74 | "type" : "component" 75 | } ], 76 | "id" : "0b92f41f-3126-4466-9d64-1b7cfed019f2", 77 | "regionName" : "sfdcHiddenRegion", 78 | "type" : "region" 79 | } ], 80 | "themeLayoutType" : "Inner", 81 | "type" : "view", 82 | "viewType" : "detail-01Z" 83 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/register.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "452b995e-a758-4048-8aff-10028a252d2c", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "6f73120f-888c-4901-ac14-5b5c622594e0", 5 | "label" : "Register", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { }, 9 | "componentName" : "salesforceIdentity:communityLogo2", 10 | "id" : "5e303912-8781-4e42-b852-5dbda6c23062", 11 | "renderPriority" : "NEUTRAL", 12 | "renditionMap" : { }, 13 | "type" : "component" 14 | }, { 15 | "componentAttributes" : { 16 | "richTextValue" : "
Join the community to receive personalized information and customer support.
" 17 | }, 18 | "componentName" : "forceCommunity:richTextInline", 19 | "id" : "63e687d7-3aeb-4905-aef9-7b8965853422", 20 | "renderPriority" : "NEUTRAL", 21 | "renditionMap" : { }, 22 | "type" : "component" 23 | }, { 24 | "componentAttributes" : { 25 | "confirmPasswordLabel" : "Confirm Password", 26 | "emailLabel" : "Email", 27 | "extraFieldsFieldSet" : "", 28 | "firstnameLabel" : "First Name", 29 | "includePasswordField" : false, 30 | "lastnameLabel" : "Last Name", 31 | "passwordLabel" : "Create Password", 32 | "regConfirmUrl" : "./CheckPasswordResetEmail", 33 | "startUrl" : "", 34 | "submitButtonLabel" : "Sign Up" 35 | }, 36 | "componentName" : "salesforceIdentity:selfRegister2", 37 | "id" : "84330c06-86b6-4598-a86d-b4b35cf23036", 38 | "renderPriority" : "NEUTRAL", 39 | "renditionMap" : { }, 40 | "type" : "component" 41 | }, { 42 | "componentAttributes" : { 43 | "headerText" : "", 44 | "showHeader" : false, 45 | "useCommunityDomainSso" : false 46 | }, 47 | "componentName" : "salesforceIdentity:socialLogin2", 48 | "id" : "86318e34-4254-4e7f-bdce-f8ed8a24a9f4", 49 | "renderPriority" : "NEUTRAL", 50 | "renditionMap" : { }, 51 | "type" : "component" 52 | }, { 53 | "componentAttributes" : { 54 | "richTextValue" : "
Already have an account?
" 55 | }, 56 | "componentName" : "forceCommunity:richTextInline", 57 | "id" : "e26e0ba7-4942-4e35-b536-eeec93f68815", 58 | "renderPriority" : "NEUTRAL", 59 | "renditionMap" : { }, 60 | "type" : "component" 61 | } ], 62 | "id" : "9feb9a6f-7a0a-4f65-adae-f743488c6429", 63 | "regionName" : "content", 64 | "type" : "region" 65 | }, { 66 | "components" : [ { 67 | "componentAttributes" : { 68 | "customHeadTags" : "", 69 | "description" : "", 70 | "title" : "Register" 71 | }, 72 | "componentName" : "forceCommunity:seoAssistant", 73 | "id" : "364d3ad5-62a2-4ba4-9e88-e831a4b317cb", 74 | "renditionMap" : { }, 75 | "type" : "component" 76 | } ], 77 | "id" : "da7f9e23-c25c-4722-b23e-0b231b6aa709", 78 | "regionName" : "sfdcHiddenRegion", 79 | "type" : "region" 80 | } ], 81 | "themeLayoutType" : "Login", 82 | "type" : "view", 83 | "viewType" : "self-register" 84 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/contactSupport.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsTwoCol66Layout", 4 | "id" : "7948af3e-b61f-48b7-8a1a-53957c98e64d", 5 | "label" : "Contact Support", 6 | "regions" : [ { 7 | "id" : "b747b2f9-9de6-4573-9ee2-b513a2df9e72", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "allowAttachments" : true, 14 | "attachmentLabel" : "Upload File", 15 | "buttonAlignment" : "center", 16 | "buttonBgColor" : "", 17 | "buttonBgHoverColor" : "", 18 | "buttonBorderColor" : "", 19 | "buttonMaxWidth" : "", 20 | "buttonRadius" : 0, 21 | "buttonTextColor" : "", 22 | "buttonTextHoverColor" : "", 23 | "callToAction" : false, 24 | "callToActionButtonText" : "", 25 | "callToActionText" : "", 26 | "callToActionUrl" : "", 27 | "confirmationSubtext" : "We’ll get back to you soon.", 28 | "confirmationText" : "Your case was created.", 29 | "guestQuickActionName" : "GuestCommunityCase", 30 | "headerSubtitle" : "Tell us how we can help.", 31 | "headerTitle" : "Contact Customer Support", 32 | "quickActionName" : "NewCommunityCase", 33 | "requestSummaryText" : "Case summary" 34 | }, 35 | "componentName" : "forceCommunity:contactSupportForm", 36 | "id" : "2e460fd1-4c6f-40dc-b58c-7a63e7526451", 37 | "renderPriority" : "NEUTRAL", 38 | "renditionMap" : { }, 39 | "type" : "component" 40 | } ], 41 | "id" : "ba6a43f6-5de0-4230-98ea-9224bce694fd", 42 | "regionName" : "content", 43 | "type" : "region" 44 | }, { 45 | "components" : [ { 46 | "componentAttributes" : { 47 | "askConfirmationQuestion" : true, 48 | "confirmationMessageLabel" : "Got it!", 49 | "deflectionSubtitle" : "Find what you need here.", 50 | "deflectionTitle" : "Need Answers Fast?", 51 | "firstQuestion" : "Did this content solve your issue?", 52 | "maxResults" : 6, 53 | "measureDeflection" : true, 54 | "redirectUrl" : "", 55 | "secondQuestion" : "Stop creating your case?", 56 | "showArticles" : true, 57 | "showDiscussions" : false, 58 | "topicId" : "" 59 | }, 60 | "componentName" : "forceCommunity:caseDeflection", 61 | "id" : "2712e141-c645-4f9d-bd96-1baefd34b0ed", 62 | "renderPriority" : "NEUTRAL", 63 | "renditionMap" : { }, 64 | "type" : "component" 65 | } ], 66 | "id" : "faf5ea80-aaba-4d37-bc51-ed71e57f8097", 67 | "regionName" : "sidebar", 68 | "type" : "region" 69 | }, { 70 | "id" : "c970a244-5060-402d-8102-2038b17d156c", 71 | "regionName" : "footer", 72 | "type" : "region" 73 | }, { 74 | "components" : [ { 75 | "componentAttributes" : { 76 | "customHeadTags" : "", 77 | "description" : "", 78 | "title" : "Contact Support" 79 | }, 80 | "componentName" : "forceCommunity:seoAssistant", 81 | "id" : "e898e546-a57d-428a-971c-8eb9d524d764", 82 | "renditionMap" : { }, 83 | "type" : "component" 84 | } ], 85 | "id" : "d16461de-25c5-4292-810b-87d2a94d4f55", 86 | "regionName" : "sfdcHiddenRegion", 87 | "type" : "region" 88 | } ], 89 | "themeLayoutType" : "Inner", 90 | "type" : "view", 91 | "viewType" : "contactsupport" 92 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/myAccount.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:dynamicLayout", 4 | "id" : "b126362e-08ef-4911-8ff2-5edbcbd4e788", 5 | "label" : "My Account", 6 | "regions" : [ { 7 | "id" : "0b462591-5704-4a35-8fb6-6587328e5a15", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "background" : "background: rgba(0,0,0,0)", 14 | "backgroundOverlay" : "rgba(0,0,0,0.5)", 15 | "contentAreaWidth" : 100, 16 | "sectionConfig" : { 17 | "UUID" : "df121919-02f4-4013-9773-cb063f6fbed9", 18 | "columns" : [ { 19 | "UUID" : "b56ae271-570a-4823-a529-e7b46db5c360", 20 | "columnKey" : "col1", 21 | "columnName" : "column 1", 22 | "columnWidth" : "12", 23 | "seedComponents" : [ { 24 | "attributes" : { 25 | "recordId" : "{!CurrentUser.accountId}", 26 | "sfdc:identifier" : "forceCommunity_recordHeadline" 27 | }, 28 | "fqn" : "forceCommunity:recordHeadline" 29 | }, { 30 | "attributes" : { 31 | "recordId" : "{!CurrentUser.accountId}", 32 | "sfdc:identifier" : "forceCommunity_recordHomeTabs" 33 | }, 34 | "fqn" : "forceCommunity:recordHomeTabs" 35 | } ] 36 | } ] 37 | }, 38 | "sectionHeight" : 32 39 | }, 40 | "componentName" : "forceCommunity:section", 41 | "id" : "df121919-02f4-4013-9773-cb063f6fbed9", 42 | "regions" : [ { 43 | "components" : [ { 44 | "componentAttributes" : { 45 | "recordId" : "{!CurrentUser.accountId}" 46 | }, 47 | "componentName" : "forceCommunity:recordHeadline", 48 | "id" : "fc157689-0958-45ad-90fe-bf27c727ebb2", 49 | "renderPriority" : "NEUTRAL", 50 | "renditionMap" : { }, 51 | "type" : "component" 52 | }, { 53 | "componentAttributes" : { 54 | "detailsTabLabel" : "Details", 55 | "discussionsTabLabel" : "Feed", 56 | "recordId" : "{!CurrentUser.accountId}", 57 | "relatedTabLabel" : "Related", 58 | "tab1Type" : "details", 59 | "tab2Type" : "related", 60 | "tab3Type" : "chatter", 61 | "tab4Type" : "none", 62 | "timelineTabLabel" : "Activity" 63 | }, 64 | "componentName" : "forceCommunity:recordHomeTabs", 65 | "id" : "1136af38-8bda-4e39-8e78-892b17a2e4f5", 66 | "renderPriority" : "NEUTRAL", 67 | "renditionMap" : { }, 68 | "type" : "component" 69 | } ], 70 | "id" : "b56ae271-570a-4823-a529-e7b46db5c360", 71 | "regionLabel" : "column 1", 72 | "regionName" : "col1", 73 | "renditionMap" : { }, 74 | "type" : "region" 75 | } ], 76 | "renderPriority" : "NEUTRAL", 77 | "renditionMap" : { }, 78 | "type" : "component" 79 | } ], 80 | "id" : "5921c7d0-77c9-42e6-8936-3fb8995f4d61", 81 | "regionName" : "content", 82 | "type" : "region" 83 | }, { 84 | "id" : "1ed62ea3-5afb-45fe-80d9-8b3ebe5307a2", 85 | "regionName" : "footer", 86 | "type" : "region" 87 | } ], 88 | "themeLayoutType" : "Inner", 89 | "type" : "view", 90 | "viewType" : "my-account" 91 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/topicCatalog.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "97e2d6cd-f066-4d7a-923d-c07422cad2a3", 5 | "label" : "Topic Catalog", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { 9 | "bannerText" : "", 10 | "bannerTextWithKnowledge" : "Explore other articles and discussions on this topic.", 11 | "bannerTextWithoutKnowledge" : "Explore other discussions on this topic.", 12 | "pageType" : "", 13 | "showSubTopics" : true, 14 | "title" : "Topics", 15 | "uniqueNameOrId" : "" 16 | }, 17 | "componentName" : "forceCommunity:headline", 18 | "id" : "0d4a6ee2-576e-4cf1-ad26-43719088f08b", 19 | "renderPriority" : "NEUTRAL", 20 | "renditionMap" : { }, 21 | "type" : "component" 22 | } ], 23 | "id" : "b4bb3b08-e81f-4fd5-bec8-c0db18df32a2", 24 | "regionName" : "header", 25 | "type" : "region" 26 | }, { 27 | "components" : [ { 28 | "componentAttributes" : { }, 29 | "componentName" : "forceCommunity:topicCatalog", 30 | "id" : "a8d6f4e4-b549-4ce7-bae0-b7786803af97", 31 | "renderPriority" : "NEUTRAL", 32 | "renditionMap" : { }, 33 | "type" : "component" 34 | } ], 35 | "id" : "98057806-6c1d-4963-b5b2-224629b1ca4f", 36 | "regionName" : "content", 37 | "type" : "region" 38 | }, { 39 | "components" : [ { 40 | "componentAttributes" : { 41 | "askCommunityLabel" : "Ask a Question", 42 | "buttonBgColor" : "", 43 | "buttonBgHoverColor" : "", 44 | "buttonBorderColor" : "", 45 | "buttonRadius" : 0, 46 | "buttonTextColor" : "", 47 | "buttonTextHoverColor" : "", 48 | "buttonTwoBgColor" : "", 49 | "buttonTwoBgHoverColor" : "", 50 | "buttonTwoBorderColor" : "", 51 | "buttonTwoRadius" : 0, 52 | "buttonTwoTextColor" : "", 53 | "buttonTwoTextHoverColor" : "", 54 | "confirmationMessage" : "Got it!", 55 | "contactSupportLabel" : "Contact Support", 56 | "followUpPromptLabel" : "Can we close your question?", 57 | "headerLabel" : "Don't see what you're looking for?", 58 | "isAskFollowPromptEnabled" : true, 59 | "isIncludeArticlesEnabled" : false, 60 | "isIncludeDiscussionsEnabled" : true, 61 | "isInitialSatisfactionPromptEnabled" : true, 62 | "isPublisherDeflectionEnabled" : true, 63 | "maxSuggestions" : 5, 64 | "satisfactionPromptLabel" : "Did we help to answer your question?", 65 | "showDetails" : false, 66 | "showTopics" : true 67 | }, 68 | "componentName" : "siteforce:napiliFooter", 69 | "id" : "137b7305-23b8-4578-8f55-1fe9758a10f9", 70 | "renderPriority" : "NEUTRAL", 71 | "renditionMap" : { }, 72 | "type" : "component" 73 | } ], 74 | "id" : "2f15236c-0ef9-4545-8fb6-ad1b1ef04fa9", 75 | "regionName" : "footer", 76 | "type" : "region" 77 | }, { 78 | "components" : [ { 79 | "componentAttributes" : { 80 | "customHeadTags" : "", 81 | "description" : "", 82 | "title" : "Topic Catalog" 83 | }, 84 | "componentName" : "forceCommunity:seoAssistant", 85 | "id" : "1fc3093b-b59f-4f80-8860-d7bf55eab0a2", 86 | "renditionMap" : { }, 87 | "type" : "component" 88 | } ], 89 | "id" : "e649a17d-43d7-4bb5-ba3d-d636e833941f", 90 | "regionName" : "sfdcHiddenRegion", 91 | "type" : "region" 92 | } ], 93 | "themeLayoutType" : "Inner", 94 | "type" : "view", 95 | "viewType" : "topic-catalog" 96 | } -------------------------------------------------------------------------------- /force-app/main/default/networks/Salto Support.network-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | false 5 | unfiled$public/CommunityChangePasswordEmailTemplate 6 | unfiled$public/CommunityChangePasswordEmailTemplate 7 | unfiled$public/ExperienceCloudSelfRegMicroBatchSubErrorEmailTemplate 8 | unfiled$public/CommunityChgEmailVerOldTemplate 9 | 10 | Customer Pro 11 | Employee Pro 12 | Partner Pro 13 | 14 | unfiled$public/SUPPORTSelfServiceNewCommentNotificationSAMPLE 15 | true 16 | pgonzaleznetwork@gmail.com 17 | Salto Support 18 | false 19 | true 20 | false 21 | false 22 | false 23 | false 24 | false 25 | false 26 | false 27 | true 28 | false 29 | false 30 | false 31 | true 32 | true 33 | true 34 | false 35 | false 36 | unfiled$public/CommunityForgotPasswordEmailTemplate 37 | false 38 | unfiled$public/CommunityChgEmailVerNewTemplate 39 | 40 | admin 41 | identity user 42 | contractmanager 43 | 44 | 45 | Standard 46 | VisualForce 47 | Standard 48 | VisualForce 49 | VisualForce 50 | 51 | Salto_Support1 52 | unfiled$public/ExperienceCloudSelfRegMicroBatchSubErrorEmailTemplate 53 | true 54 | true 55 | Salto_Support 56 | NotArchived 57 | UnderConstruction 58 | 59 | home 60 | Chatter 61 | 62 | saltosupport 63 | unfiled$public/CommunityLockoutEmailTemplate 64 | unfiled$public/CommunityWelcomeEmailTemplate 65 | 66 | -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/pabloPage.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:dynamicLayout", 4 | "id" : "ebb8bd88-0f77-4c35-88cf-d483fba518b9", 5 | "label" : "PabloPage", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { 9 | "background" : "background: rgba(0,0,0,0)", 10 | "backgroundOverlay" : "rgba(0,0,0,0.5)", 11 | "contentAreaWidth" : 100, 12 | "sectionConfig" : { 13 | "UUID" : "a8c5f86d-4d2e-436f-87d9-610939d9c7c8", 14 | "columns" : [ { 15 | "UUID" : "e1aa85d8-bd7b-4770-810e-a3e1783608b7", 16 | "columnKey" : "1", 17 | "columnName" : "Column 1", 18 | "columnWidth" : "3", 19 | "seedComponents" : [ ] 20 | }, { 21 | "UUID" : "56e0e517-29fd-4245-a25d-445e8114548e", 22 | "columnKey" : "4897b", 23 | "columnName" : "Column 2", 24 | "columnWidth" : "3", 25 | "seedComponents" : [ ] 26 | }, { 27 | "UUID" : "d9bbeef7-b983-42c6-93f2-eb26c6f13a7d", 28 | "columnKey" : "1922c", 29 | "columnName" : "Column 3", 30 | "columnWidth" : "3", 31 | "seedComponents" : [ ] 32 | }, { 33 | "UUID" : "fc1aa323-2b7b-4a11-9838-5a15ed622921", 34 | "columnKey" : "88f58", 35 | "columnName" : "Column 4", 36 | "columnWidth" : "3", 37 | "seedComponents" : [ ] 38 | } ] 39 | }, 40 | "sectionHeight" : 300 41 | }, 42 | "componentName" : "forceCommunity:section", 43 | "id" : "a8c5f86d-4d2e-436f-87d9-610939d9c7c8", 44 | "regions" : [ { 45 | "components" : [ { 46 | "componentAttributes" : { 47 | "flowArguments" : "", 48 | "flowName" : "Create_a_Case_Custom" 49 | }, 50 | "componentName" : "forceCommunity:flowCommunity", 51 | "id" : "38c2ea98-6a47-4e38-ae88-6c309578f57d", 52 | "renderPriority" : "NEUTRAL", 53 | "renditionMap" : { }, 54 | "type" : "component" 55 | }, { 56 | "componentAttributes" : { 57 | "buttonText" : "Salto rocks!" 58 | }, 59 | "componentName" : "c:customCommunityComponent", 60 | "id" : "806050a5-50f4-4a1f-87c2-84ec227c75c5", 61 | "renderPriority" : "NEUTRAL", 62 | "renditionMap" : { }, 63 | "type" : "component" 64 | } ], 65 | "id" : "e1aa85d8-bd7b-4770-810e-a3e1783608b7", 66 | "regionLabel" : "Column 1", 67 | "regionName" : "1", 68 | "renditionMap" : { }, 69 | "type" : "region" 70 | }, { 71 | "id" : "56e0e517-29fd-4245-a25d-445e8114548e", 72 | "regionLabel" : "Column 2", 73 | "regionName" : "4897b", 74 | "renditionMap" : { }, 75 | "type" : "region" 76 | }, { 77 | "id" : "d9bbeef7-b983-42c6-93f2-eb26c6f13a7d", 78 | "regionLabel" : "Column 3", 79 | "regionName" : "1922c", 80 | "renditionMap" : { }, 81 | "type" : "region" 82 | }, { 83 | "id" : "fc1aa323-2b7b-4a11-9838-5a15ed622921", 84 | "regionLabel" : "Column 4", 85 | "regionName" : "88f58", 86 | "renditionMap" : { }, 87 | "type" : "region" 88 | } ], 89 | "renderPriority" : "NEUTRAL", 90 | "renditionMap" : { }, 91 | "type" : "component" 92 | } ], 93 | "id" : "e3eddcca-871f-42ad-a940-7e55961822b7", 94 | "regionName" : "content", 95 | "type" : "region" 96 | }, { 97 | "components" : [ { 98 | "componentAttributes" : { 99 | "customHeadTags" : "", 100 | "description" : "", 101 | "title" : "PabloPage" 102 | }, 103 | "componentName" : "forceCommunity:seoAssistant", 104 | "id" : "c4e5f88c-041f-488e-a9c7-209c448dc0e4", 105 | "renditionMap" : { }, 106 | "type" : "component" 107 | } ], 108 | "id" : "cc23d9d6-23ce-42b9-adc4-841664e842ca", 109 | "regionName" : "sfdcHiddenRegion", 110 | "type" : "region" 111 | } ], 112 | "themeLayoutType" : "Inner", 113 | "type" : "view", 114 | "viewType" : "custom-pablopage" 115 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/accountManagement.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsOneColLayout", 4 | "id" : "e45a3e78-3490-4dca-9c65-51a640e81672", 5 | "label" : "Account Management", 6 | "regions" : [ { 7 | "id" : "b009eea5-c64a-48b6-bb73-b2bd973cd0db", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "tabsetConfig" : { 14 | "UUID" : "0f5a1d6f-b2ac-44a6-94d4-ea22a4fa59a6", 15 | "activeTab" : "tab1", 16 | "tabs" : [ { 17 | "UUID" : "9f2ec77f-db23-4844-97da-ce241423bcfc", 18 | "allowGuestUser" : false, 19 | "locked" : false, 20 | "seedComponents" : [ { 21 | "attributes" : { 22 | "customTitle" : "Members", 23 | "parentRecordId" : "{!CurrentUser.accountId}", 24 | "relatedListName" : "Users", 25 | "showBreadCrumbs" : "false", 26 | "showCustomTitle" : "true", 27 | "showManualRefreshButton" : "false", 28 | "showRowNumbers" : "false" 29 | }, 30 | "fqn" : "forceCommunity:relatedList" 31 | } ], 32 | "tabKey" : "tab1", 33 | "tabName" : "Members" 34 | }, { 35 | "UUID" : "f0a129ca-8582-4845-bbc6-cfffff1bd0b8", 36 | "allowGuestUser" : false, 37 | "locked" : false, 38 | "seedComponents" : [ { 39 | "attributes" : { 40 | "recordId" : "{!CurrentUser.accountId}" 41 | }, 42 | "fqn" : "forceCommunity:accountBrandRecord" 43 | } ], 44 | "tabKey" : "tab2", 45 | "tabName" : "Branding" 46 | } ], 47 | "useOverflowMenu" : false 48 | } 49 | }, 50 | "componentName" : "forceCommunity:tabset", 51 | "id" : "0f5a1d6f-b2ac-44a6-94d4-ea22a4fa59a6", 52 | "regions" : [ { 53 | "components" : [ { 54 | "componentAttributes" : { 55 | "customTitle" : "Members", 56 | "parentRecordId" : "{!CurrentUser.accountId}", 57 | "relatedListName" : "Users", 58 | "showBreadCrumbs" : false, 59 | "showCustomTitle" : true, 60 | "showManualRefreshButton" : false, 61 | "showRowNumbers" : false 62 | }, 63 | "componentName" : "forceCommunity:relatedList", 64 | "id" : "3b86f9a3-7586-47da-9dd0-e3f9925f7cf5", 65 | "renditionMap" : { }, 66 | "type" : "component" 67 | } ], 68 | "id" : "9f2ec77f-db23-4844-97da-ce241423bcfc", 69 | "regionLabel" : "Members", 70 | "regionName" : "tab1", 71 | "renditionMap" : { }, 72 | "type" : "region" 73 | }, { 74 | "components" : [ { 75 | "componentAttributes" : { 76 | "recordId" : "{!CurrentUser.accountId}" 77 | }, 78 | "componentName" : "forceCommunity:accountBrandRecord", 79 | "id" : "4d23ff82-d9e9-4522-a8cc-30b836f3beae", 80 | "renditionMap" : { }, 81 | "type" : "component" 82 | } ], 83 | "id" : "f0a129ca-8582-4845-bbc6-cfffff1bd0b8", 84 | "regionLabel" : "Branding", 85 | "regionName" : "tab2", 86 | "renditionMap" : { }, 87 | "type" : "region" 88 | } ], 89 | "renderPriority" : "NEUTRAL", 90 | "renditionMap" : { }, 91 | "type" : "component" 92 | } ], 93 | "id" : "f952883b-ef1d-48dd-851a-8962bc3953a6", 94 | "regionName" : "content", 95 | "type" : "region" 96 | }, { 97 | "id" : "e9aeb2ca-fec3-49dd-95c6-8683ef21e02a", 98 | "regionName" : "footer", 99 | "type" : "region" 100 | }, { 101 | "components" : [ { 102 | "componentAttributes" : { 103 | "customHeadTags" : "", 104 | "description" : "", 105 | "title" : "Account Management" 106 | }, 107 | "componentName" : "forceCommunity:seoAssistant", 108 | "id" : "59ee1d65-f46e-4089-ae24-f0a4418e09d2", 109 | "renditionMap" : { }, 110 | "type" : "component" 111 | } ], 112 | "id" : "56f3457a-3867-43aa-86e7-3a34ebea7ac3", 113 | "regionName" : "sfdcHiddenRegion", 114 | "type" : "region" 115 | } ], 116 | "themeLayoutType" : "Inner", 117 | "type" : "view", 118 | "viewType" : "account-management" 119 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/questionDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsTwoCol84Layout", 4 | "id" : "737c83bc-84ad-424f-aec0-93ea2cda6860", 5 | "label" : "Question Detail", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { 9 | "bannerText" : "", 10 | "bannerTextWithKnowledge" : "Explore other articles and discussions on this topic.", 11 | "bannerTextWithoutKnowledge" : "Explore other discussions on this topic.", 12 | "pageType" : "discussion", 13 | "showSubTopics" : true, 14 | "title" : "Welcome!", 15 | "uniqueNameOrId" : "{!recordId}" 16 | }, 17 | "componentName" : "forceCommunity:headline", 18 | "id" : "c80142a0-56cb-43b2-ab97-01913a2aa0dd", 19 | "renderPriority" : "NEUTRAL", 20 | "renditionMap" : { }, 21 | "type" : "component" 22 | } ], 23 | "id" : "44ef41ee-bb12-455a-8fbd-b4fd5db63739", 24 | "regionName" : "header", 25 | "type" : "region" 26 | }, { 27 | "components" : [ { 28 | "componentAttributes" : { 29 | "id" : "{!feedItemId}" 30 | }, 31 | "componentName" : "forceCommunity:feedItemDetail", 32 | "id" : "39bfa694-9a7b-4bb9-bee7-6163a50076c4", 33 | "renderPriority" : "NEUTRAL", 34 | "renditionMap" : { }, 35 | "type" : "component" 36 | } ], 37 | "id" : "a4c9b151-62b6-4052-b849-b391e188d326", 38 | "regionName" : "content", 39 | "type" : "region" 40 | }, { 41 | "components" : [ { 42 | "componentAttributes" : { 43 | "numberOfItems" : 5, 44 | "showViewCounts" : true, 45 | "title" : "Related Questions" 46 | }, 47 | "componentName" : "selfService:similarQuestions", 48 | "id" : "9e6125c9-ab36-4683-a06d-7a3d6e8e7a5b", 49 | "renderPriority" : "NEUTRAL", 50 | "renditionMap" : { }, 51 | "type" : "component" 52 | }, { 53 | "componentAttributes" : { 54 | "channel" : "DefaultChannel", 55 | "title" : "" 56 | }, 57 | "componentName" : "forceCommunity:recommendations", 58 | "id" : "7973d2a4-5600-4132-aac3-d29d54c6f4b8", 59 | "renderPriority" : "NEUTRAL", 60 | "renditionMap" : { }, 61 | "type" : "component" 62 | } ], 63 | "id" : "619d6c4d-417f-437a-b8d4-ba5f420d75df", 64 | "regionName" : "sidebar", 65 | "type" : "region" 66 | }, { 67 | "components" : [ { 68 | "componentAttributes" : { 69 | "askCommunityLabel" : "Ask a Question", 70 | "buttonBgColor" : "", 71 | "buttonBgHoverColor" : "", 72 | "buttonBorderColor" : "", 73 | "buttonRadius" : 0, 74 | "buttonTextColor" : "", 75 | "buttonTextHoverColor" : "", 76 | "buttonTwoBgColor" : "", 77 | "buttonTwoBgHoverColor" : "", 78 | "buttonTwoBorderColor" : "", 79 | "buttonTwoRadius" : 0, 80 | "buttonTwoTextColor" : "", 81 | "buttonTwoTextHoverColor" : "", 82 | "confirmationMessage" : "Got it!", 83 | "contactSupportLabel" : "Contact Support", 84 | "followUpPromptLabel" : "Can we close your question?", 85 | "headerLabel" : "Don't see what you're looking for?", 86 | "isAskFollowPromptEnabled" : true, 87 | "isIncludeArticlesEnabled" : false, 88 | "isIncludeDiscussionsEnabled" : true, 89 | "isInitialSatisfactionPromptEnabled" : true, 90 | "isPublisherDeflectionEnabled" : true, 91 | "maxSuggestions" : 5, 92 | "satisfactionPromptLabel" : "Did we help to answer your question?", 93 | "showDetails" : false, 94 | "showTopics" : true 95 | }, 96 | "componentName" : "siteforce:napiliFooter", 97 | "id" : "ca62f195-0186-4d83-8106-804fc628155a", 98 | "renderPriority" : "NEUTRAL", 99 | "renditionMap" : { }, 100 | "type" : "component" 101 | } ], 102 | "id" : "45eb1fd6-766a-4233-bacb-a7676c098ce3", 103 | "regionName" : "footer", 104 | "type" : "region" 105 | }, { 106 | "components" : [ { 107 | "componentAttributes" : { 108 | "customHeadTags" : "", 109 | "description" : "", 110 | "title" : "{!Record.Title}" 111 | }, 112 | "componentName" : "forceCommunity:seoAssistant", 113 | "id" : "08270885-878b-4dbb-a6d2-50d882d3528b", 114 | "renditionMap" : { }, 115 | "type" : "component" 116 | } ], 117 | "id" : "1c7fed68-2f03-4970-b192-c656d9b6badc", 118 | "regionName" : "sfdcHiddenRegion", 119 | "type" : "region" 120 | } ], 121 | "themeLayoutType" : "Inner", 122 | "type" : "view", 123 | "viewType" : "feeditem" 124 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/themes/customerService.json: -------------------------------------------------------------------------------- 1 | { 2 | "activeBrandingSetId" : "420e1654-990c-4112-ac03-36932f28be75", 3 | "customCSS" : "", 4 | "developerName" : "service", 5 | "id" : "e1779f59-56c0-4de5-a003-7dad262add58", 6 | "label" : "Customer Service", 7 | "layouts" : { 8 | "Inner" : "aea73bfd-cfc0-49ab-b6e0-84ed8882627f", 9 | "Login" : "2ac6a0e9-d9fd-4fae-b020-5a60e8abfc6c", 10 | "ServiceNotAvailable" : "135a6985-bce5-4f9e-b1ac-c07c5a11140f" 11 | }, 12 | "type" : "theme", 13 | "views" : [ { 14 | "componentAttributes" : { }, 15 | "componentName" : "salesforceIdentity:loginBody2", 16 | "id" : "2ac6a0e9-d9fd-4fae-b020-5a60e8abfc6c", 17 | "label" : "Login", 18 | "regions" : [ { 19 | "id" : "e482193c-1b80-4bcd-b239-cc7e019734f5", 20 | "regionName" : "header", 21 | "type" : "region" 22 | }, { 23 | "id" : "1859934d-4bba-49d0-8184-38014557c64a", 24 | "regionName" : "content", 25 | "type" : "region" 26 | }, { 27 | "id" : "c73b31ac-8e30-4cd9-b8c6-7c3421b50cdf", 28 | "regionName" : "footer", 29 | "type" : "region" 30 | } ], 31 | "type" : "view" 32 | }, { 33 | "componentAttributes" : { 34 | "IsDefaultHeaderHidden" : false, 35 | "IsDefaultNotificationsHidden" : false, 36 | "fixedPageWidth" : 1140, 37 | "isPageWidthFixed" : true 38 | }, 39 | "componentName" : "siteforce:serviceBody", 40 | "id" : "aea73bfd-cfc0-49ab-b6e0-84ed8882627f", 41 | "label" : "Default", 42 | "regions" : [ { 43 | "id" : "34863619-1df2-410a-a197-272225f15617", 44 | "regionName" : "customHeader", 45 | "type" : "region" 46 | }, { 47 | "components" : [ { 48 | "componentAttributes" : { 49 | "contineActionLabel" : "Ask the community", 50 | "continueLabel" : "Don’t see it?", 51 | "crossObjectTypeaheadApiNames" : [ { 52 | "isPublic" : true, 53 | "name" : "KnowledgeArticleVersion" 54 | }, { 55 | "isPublic" : true, 56 | "name" : "FeedItem" 57 | }, { 58 | "isPublic" : false, 59 | "name" : "Case" 60 | }, { 61 | "isPublic" : true, 62 | "name" : "CollaborationGroup" 63 | } ], 64 | "disableCrossObjectRelevance" : false, 65 | "enableAutocomplete" : true, 66 | "maxNumberOfResults" : 6, 67 | "placeholder" : "Search...", 68 | "questionResultsFirst" : false, 69 | "showContinueAction" : true, 70 | "showDetails" : false, 71 | "showTopics" : true, 72 | "signInActionLabel" : "Sign in to ask the community" 73 | }, 74 | "componentName" : "forceCommunity:searchBox", 75 | "id" : "6e0a97a0-e69b-4a53-95c8-5cb95dc91046", 76 | "renditionMap" : { }, 77 | "type" : "component" 78 | } ], 79 | "id" : "6fe07f7a-683b-4857-82d8-97165f1173f2", 80 | "regionName" : "search", 81 | "type" : "region" 82 | }, { 83 | "components" : [ { 84 | "componentAttributes" : { 85 | "accountManagementLabel" : "Account Management", 86 | "communityBuilderLabel" : "Experience Builder", 87 | "communitySetupLabel" : "Salesforce Setup", 88 | "contactSupportLabel" : "Contact Support", 89 | "filterName" : "MyCases", 90 | "homeLabel" : "Home", 91 | "includeContactSupport" : true, 92 | "includeMessages" : false, 93 | "loginLabel" : "Login", 94 | "logoutLabel" : "Logout", 95 | "myAccountLabel" : "My Account", 96 | "showAccountManagement" : true, 97 | "showUserSettings" : true, 98 | "userSettingsLabel" : "My Settings", 99 | "viewProfileLabel" : "My Profile" 100 | }, 101 | "componentName" : "selfService:userProfileMenu", 102 | "id" : "f559e4df-ce65-48ac-8ca4-9564e9725060", 103 | "renditionMap" : { }, 104 | "type" : "component" 105 | } ], 106 | "id" : "4da357a5-4019-49f1-bfca-1da675b2c7e6", 107 | "regionName" : "profileMenu", 108 | "type" : "region" 109 | }, { 110 | "components" : [ { 111 | "componentAttributes" : { 112 | "NavigationMenuEditorRefresh" : "", 113 | "hideAppLauncher" : false, 114 | "hideHomeText" : false 115 | }, 116 | "componentName" : "forceCommunity:globalNavigation", 117 | "id" : "b45f9f8a-482b-4d52-a9be-f636c3d323d7", 118 | "renditionMap" : { }, 119 | "type" : "component" 120 | } ], 121 | "id" : "a1ed6f54-a43c-4b2f-b3d7-9ea7eb093426", 122 | "regionName" : "navBar", 123 | "type" : "region" 124 | }, { 125 | "id" : "27c38b4c-5409-44e4-9e15-ac8ffd877906", 126 | "regionName" : "customRegion", 127 | "type" : "region" 128 | }, { 129 | "id" : "d8ab998a-c5cb-4ba5-841f-9aa88b35b8eb", 130 | "regionName" : "footer", 131 | "type" : "region" 132 | } ], 133 | "type" : "view" 134 | }, { 135 | "componentAttributes" : { 136 | "fixedPageWidth" : 1170, 137 | "headerBgColor" : "rgba(0, 0, 0, 0)", 138 | "isHeaderPinned" : false, 139 | "isHeroUnderHeader" : false, 140 | "isPageWidthFixed" : true, 141 | "showHeader" : true, 142 | "showHero" : true 143 | }, 144 | "componentName" : "siteforce:themeLayoutStarter", 145 | "id" : "135a6985-bce5-4f9e-b1ac-c07c5a11140f", 146 | "label" : "ServiceNotAvailable", 147 | "regions" : [ { 148 | "id" : "5946ff02-dd4f-42c8-b00c-0625562233e4", 149 | "regionName" : "themeHeader", 150 | "type" : "region" 151 | }, { 152 | "id" : "201f9ace-3ce0-4746-b312-489e6d925c99", 153 | "regionName" : "themeFooter", 154 | "type" : "region" 155 | } ], 156 | "type" : "view" 157 | } ] 158 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/articleDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsTwoCol84Layout", 4 | "id" : "2c953750-f991-4247-a249-a275f557a88e", 5 | "label" : "Article Detail", 6 | "regions" : [ { 7 | "id" : "0dc253a2-82e8-48a5-8121-240d857ce6d5", 8 | "regionName" : "header", 9 | "type" : "region" 10 | }, { 11 | "components" : [ { 12 | "componentAttributes" : { 13 | "uniqueNameOrId" : "{!urlName}" 14 | }, 15 | "componentName" : "forceCommunity:breadcrumbs", 16 | "id" : "f7a07fb4-e55f-4d1e-b3da-45f66cb9d5e3", 17 | "renderPriority" : "NEUTRAL", 18 | "renditionMap" : { }, 19 | "type" : "component" 20 | }, { 21 | "componentAttributes" : { 22 | "enableVoting" : true, 23 | "recordId" : "{!recordId}", 24 | "showTitleInArticleHeader" : true, 25 | "showTopicPills" : true, 26 | "urlName" : "{!urlName}" 27 | }, 28 | "componentName" : "selfService:singleArticleView", 29 | "id" : "d683c309-3d08-4121-a986-bec867eba832", 30 | "renderPriority" : "NEUTRAL", 31 | "renditionMap" : { }, 32 | "type" : "component" 33 | }, { 34 | "componentAttributes" : { 35 | "context" : "RECORD", 36 | "recordId" : "{!recordId}", 37 | "width" : "WIDE" 38 | }, 39 | "componentName" : "forceCommunity:feedPublisher", 40 | "id" : "aa0ef826-1da3-41d3-ad9b-e3bc08a181d4", 41 | "renderPriority" : "NEUTRAL", 42 | "renditionMap" : { }, 43 | "type" : "component" 44 | }, { 45 | "componentAttributes" : { 46 | "canChangeSorting" : false, 47 | "defaultFilter" : "", 48 | "defaultSortOrderHomeFeed" : "Relevance", 49 | "defaultSortOrderTopicsFeed" : "Relevance", 50 | "feedDesign" : "DEFAULT", 51 | "hasFeedSearch" : false, 52 | "subjectId" : "{!recordId}", 53 | "type" : "Record" 54 | }, 55 | "componentName" : "forceCommunity:forceCommunityFeed", 56 | "id" : "7b11b938-b48f-4051-8e64-8e6ad1bce106", 57 | "renderPriority" : "NEUTRAL", 58 | "renditionMap" : { }, 59 | "type" : "component" 60 | } ], 61 | "id" : "59abe732-89de-426e-864f-a0862f6b08e0", 62 | "regionName" : "content", 63 | "type" : "region" 64 | }, { 65 | "components" : [ { 66 | "componentAttributes" : { 67 | "buttonAlignment" : "center", 68 | "buttonBgColor" : "", 69 | "buttonBgHoverColor" : "", 70 | "buttonBorderColor" : "", 71 | "buttonMaxWidth" : 100, 72 | "buttonRadius" : 0, 73 | "buttonTextColor" : "", 74 | "buttonTextHoverColor" : "", 75 | "recordId" : "{!recordId}", 76 | "showNotificationMenu" : false 77 | }, 78 | "componentName" : "forceCommunity:follow", 79 | "id" : "43845e0b-3f0d-4ece-a151-97ddd7fa6cfc", 80 | "renderPriority" : "NEUTRAL", 81 | "renditionMap" : { }, 82 | "type" : "component" 83 | }, { 84 | "componentAttributes" : { 85 | "numberOfItems" : 5, 86 | "showViewCounts" : true, 87 | "title" : "Related Articles" 88 | }, 89 | "componentName" : "selfService:similarArticles42", 90 | "id" : "a5f7abee-eb67-4620-8385-15cb9103538f", 91 | "renderPriority" : "NEUTRAL", 92 | "renditionMap" : { }, 93 | "type" : "component" 94 | }, { 95 | "componentAttributes" : { 96 | "numberOfArticles" : 5, 97 | "title" : "Trending Articles", 98 | "topicId" : "{!topicId}" 99 | }, 100 | "componentName" : "selfService:topicTrendingArticles42", 101 | "id" : "dd653e2e-3c33-4c5c-b982-2065dffebc58", 102 | "renderPriority" : "NEUTRAL", 103 | "renditionMap" : { }, 104 | "type" : "component" 105 | } ], 106 | "id" : "7a726e5c-93d4-43fe-8ce6-be736b883d90", 107 | "regionName" : "sidebar", 108 | "type" : "region" 109 | }, { 110 | "components" : [ { 111 | "componentAttributes" : { 112 | "askCommunityLabel" : "Ask a Question", 113 | "buttonBgColor" : "", 114 | "buttonBgHoverColor" : "", 115 | "buttonBorderColor" : "", 116 | "buttonRadius" : 0, 117 | "buttonTextColor" : "", 118 | "buttonTextHoverColor" : "", 119 | "buttonTwoBgColor" : "", 120 | "buttonTwoBgHoverColor" : "", 121 | "buttonTwoBorderColor" : "", 122 | "buttonTwoRadius" : 0, 123 | "buttonTwoTextColor" : "", 124 | "buttonTwoTextHoverColor" : "", 125 | "confirmationMessage" : "Got it!", 126 | "contactSupportLabel" : "Contact Support", 127 | "followUpPromptLabel" : "Can we close your question?", 128 | "headerLabel" : "Don't see what you're looking for?", 129 | "isAskFollowPromptEnabled" : true, 130 | "isIncludeArticlesEnabled" : false, 131 | "isIncludeDiscussionsEnabled" : true, 132 | "isInitialSatisfactionPromptEnabled" : true, 133 | "isPublisherDeflectionEnabled" : true, 134 | "maxSuggestions" : 5, 135 | "satisfactionPromptLabel" : "Did we help to answer your question?", 136 | "showDetails" : false, 137 | "showTopics" : true 138 | }, 139 | "componentName" : "siteforce:napiliFooter", 140 | "id" : "4891ffbd-e5ad-4ad7-9dab-65f55529c235", 141 | "renderPriority" : "NEUTRAL", 142 | "renditionMap" : { }, 143 | "type" : "component" 144 | } ], 145 | "id" : "8c219985-e4da-4ab8-aeae-40006e0c42f3", 146 | "regionName" : "footer", 147 | "type" : "region" 148 | }, { 149 | "components" : [ { 150 | "componentAttributes" : { 151 | "customHeadTags" : "", 152 | "description" : "{!Record.Summary}", 153 | "title" : "{!Record._Title}" 154 | }, 155 | "componentName" : "forceCommunity:seoAssistant", 156 | "id" : "53ab342a-3c6f-410f-8a71-c6ffe7d0d3d5", 157 | "renditionMap" : { }, 158 | "type" : "component" 159 | } ], 160 | "id" : "51eda758-15e9-49e0-b5b6-4788bf77bbfa", 161 | "regionName" : "sfdcHiddenRegion", 162 | "type" : "region" 163 | } ], 164 | "themeLayoutType" : "Inner", 165 | "type" : "view", 166 | "viewType" : "article" 167 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/home.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsTwoCol84SidebarFeaturedLayout", 4 | "id" : "e5fe239b-df73-430d-8f9b-c9ea53abbcb9", 5 | "label" : "Home", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { 9 | "bannerText" : "A place where you can easily find solutions and ask questions", 10 | "bannerTextWithKnowledge" : "Explore other articles and discussions on this topic.", 11 | "bannerTextWithoutKnowledge" : "Explore other discussions on this topic.", 12 | "pageType" : "", 13 | "showSubTopics" : true, 14 | "title" : "Welcome!", 15 | "uniqueNameOrId" : "" 16 | }, 17 | "componentName" : "forceCommunity:headline", 18 | "id" : "b988609a-5785-4615-84d6-16f4621fdbec", 19 | "renderPriority" : "NEUTRAL", 20 | "renditionMap" : { }, 21 | "type" : "component" 22 | } ], 23 | "id" : "9ad6cbf8-1a63-431f-8126-e1f8e3c692f1", 24 | "regionName" : "header", 25 | "type" : "region" 26 | }, { 27 | "components" : [ { 28 | "componentAttributes" : { 29 | "buttonAlignment" : "center", 30 | "buttonBgColor" : "", 31 | "buttonBgHoverColor" : "", 32 | "buttonBorderColor" : "", 33 | "buttonMaxWidth" : 100, 34 | "buttonRadius" : 0, 35 | "buttonTextColor" : "", 36 | "buttonTextHoverColor" : "", 37 | "confirmationMessage" : "Got it!", 38 | "followUpPromptLabel" : "Can we close your question?", 39 | "isAskFollowPromptEnabled" : true, 40 | "isIncludeArticlesEnabled" : false, 41 | "isIncludeDiscussionsEnabled" : true, 42 | "isInitialSatisfactionPromptEnabled" : true, 43 | "isPublisherDeflectionEnabled" : true, 44 | "label" : "Ask a Question", 45 | "maxSuggestions" : 5, 46 | "satisfactionPromptLabel" : "Did we help to answer your question?", 47 | "showDetails" : false, 48 | "showTopics" : true, 49 | "uneditableTopics" : false 50 | }, 51 | "componentName" : "forceCommunity:askCommunity", 52 | "id" : "ab37f004-bd49-4eb5-9f10-133f4165a026", 53 | "renderPriority" : "NEUTRAL", 54 | "renditionMap" : { }, 55 | "type" : "component" 56 | } ], 57 | "id" : "b08845b1-dbff-43f1-9c3a-1da2aea71455", 58 | "regionName" : "featured", 59 | "type" : "region" 60 | }, { 61 | "components" : [ { 62 | "componentAttributes" : { 63 | "defaultSortOrderCompactFeed" : "Relevance", 64 | "defaultSortOrderFullFeed" : "Relevance", 65 | "discussionTabLabel" : "Discussions", 66 | "featuredTabLabel" : "Featured", 67 | "maxWidth" : 100, 68 | "myFeedTabLabel" : "My Feed", 69 | "overlayColor" : "rgba(0,0,0,0.4)", 70 | "overlayHoverColor" : "", 71 | "radius" : 0, 72 | "showCompactFeedInDiscussion" : true, 73 | "textAlignment" : "center", 74 | "textBgColor" : "rgba(0,0,0,0)", 75 | "textBgHoverColor" : "rgba(0,0,0,0)", 76 | "textColor" : "", 77 | "textHoverColor" : "", 78 | "textPosition" : "center center" 79 | }, 80 | "componentName" : "forceCommunity:homeTabs", 81 | "id" : "e7d9c36b-8bf2-4cf1-a238-d571158fc494", 82 | "renderPriority" : "NEUTRAL", 83 | "renditionMap" : { }, 84 | "type" : "component" 85 | } ], 86 | "id" : "42e1cd4f-0435-4dee-b3fe-6d00f012c483", 87 | "regionName" : "content", 88 | "type" : "region" 89 | }, { 90 | "components" : [ { 91 | "componentAttributes" : { 92 | "channel" : "DefaultChannel", 93 | "title" : "" 94 | }, 95 | "componentName" : "forceCommunity:recommendations", 96 | "id" : "0f13bb7d-b2df-47c9-a274-fe8c96e17035", 97 | "renderPriority" : "NEUTRAL", 98 | "renditionMap" : { }, 99 | "type" : "component" 100 | }, { 101 | "componentAttributes" : { 102 | "display" : "LEVELS_POINTS", 103 | "excludeInternalUsers" : false, 104 | "knowledgeLabel" : "Knows about", 105 | "numberOfUsers" : 5, 106 | "showContextUser" : false, 107 | "showTooltip" : false, 108 | "showUserRank" : false, 109 | "title" : "Leaderboard", 110 | "tooltipText" : "Earn points and climb to new levels when you contribute in the experience!" 111 | }, 112 | "componentName" : "forceCommunity:reputationLeaderboard42", 113 | "id" : "f26e2d84-74f5-44d3-8a07-84aa612b5adf", 114 | "renderPriority" : "NEUTRAL", 115 | "renditionMap" : { }, 116 | "type" : "component" 117 | }, { 118 | "componentAttributes" : { 119 | "numberOfTopics" : 5, 120 | "showTopicsMetric" : true, 121 | "title" : "Trending Topics" 122 | }, 123 | "componentName" : "forceCommunity:trendingTopics", 124 | "id" : "7cf7e88b-f2ed-4940-8c88-2cd15b2f1386", 125 | "renderPriority" : "NEUTRAL", 126 | "renditionMap" : { }, 127 | "type" : "component" 128 | } ], 129 | "id" : "a555581a-9fe3-48fa-adda-d2fa45cf1c43", 130 | "regionName" : "sidebar", 131 | "type" : "region" 132 | }, { 133 | "components" : [ { 134 | "componentAttributes" : { 135 | "askCommunityLabel" : "Ask a Question", 136 | "buttonBgColor" : "", 137 | "buttonBgHoverColor" : "", 138 | "buttonBorderColor" : "", 139 | "buttonRadius" : 0, 140 | "buttonTextColor" : "", 141 | "buttonTextHoverColor" : "", 142 | "buttonTwoBgColor" : "", 143 | "buttonTwoBgHoverColor" : "", 144 | "buttonTwoBorderColor" : "", 145 | "buttonTwoRadius" : 0, 146 | "buttonTwoTextColor" : "", 147 | "buttonTwoTextHoverColor" : "", 148 | "confirmationMessage" : "Got it!", 149 | "contactSupportLabel" : "Contact Support", 150 | "followUpPromptLabel" : "Can we close your question?", 151 | "headerLabel" : "Don't see what you're looking for?", 152 | "isAskFollowPromptEnabled" : true, 153 | "isIncludeArticlesEnabled" : false, 154 | "isIncludeDiscussionsEnabled" : true, 155 | "isInitialSatisfactionPromptEnabled" : true, 156 | "isPublisherDeflectionEnabled" : true, 157 | "maxSuggestions" : 5, 158 | "satisfactionPromptLabel" : "Did we help to answer your question?", 159 | "showDetails" : false, 160 | "showTopics" : true 161 | }, 162 | "componentName" : "siteforce:napiliFooter", 163 | "id" : "4f5d7994-3585-4219-942c-64946b97df03", 164 | "renderPriority" : "NEUTRAL", 165 | "renditionMap" : { }, 166 | "type" : "component" 167 | } ], 168 | "id" : "9c44a907-80a1-4794-aea5-5566b685dcf7", 169 | "regionName" : "footer", 170 | "type" : "region" 171 | }, { 172 | "components" : [ { 173 | "componentAttributes" : { 174 | "customHeadTags" : "", 175 | "description" : "", 176 | "title" : "Home" 177 | }, 178 | "componentName" : "forceCommunity:seoAssistant", 179 | "id" : "8357d19a-1c15-4c29-899b-51de6e3b17f7", 180 | "renditionMap" : { }, 181 | "type" : "component" 182 | } ], 183 | "id" : "d4d36c12-061d-40f0-a775-84e02b094d80", 184 | "regionName" : "sfdcHiddenRegion", 185 | "type" : "region" 186 | } ], 187 | "themeLayoutType" : "Inner", 188 | "type" : "view", 189 | "viewType" : "home" 190 | } -------------------------------------------------------------------------------- /force-app/main/default/experiences/Salto_Support1/views/topicDetail.json: -------------------------------------------------------------------------------- 1 | { 2 | "appPageId" : "0b2b895d-a677-4e15-996a-977ad2c893e3", 3 | "componentName" : "siteforce:sldsTwoCol84SidebarFeaturedLayout", 4 | "id" : "9f482f3e-e6c2-488d-9d43-1a504b59e3e3", 5 | "label" : "Topic Detail", 6 | "regions" : [ { 7 | "components" : [ { 8 | "componentAttributes" : { 9 | "bannerText" : "", 10 | "bannerTextWithKnowledge" : "Explore other articles and discussions on this topic.", 11 | "bannerTextWithoutKnowledge" : "Explore other discussions on this topic.", 12 | "pageType" : "topic", 13 | "showSubTopics" : true, 14 | "title" : "Welcome!", 15 | "uniqueNameOrId" : "" 16 | }, 17 | "componentName" : "forceCommunity:headline", 18 | "id" : "c7690c02-71cc-48ba-b578-26b2dd85f2a5", 19 | "renderPriority" : "NEUTRAL", 20 | "renditionMap" : { }, 21 | "type" : "component" 22 | } ], 23 | "id" : "c1d59051-88f9-474b-8df3-abc2e6ae9ce2", 24 | "regionName" : "header", 25 | "type" : "region" 26 | }, { 27 | "components" : [ { 28 | "componentAttributes" : { 29 | "title" : "Description", 30 | "topicId" : "{!recordId}" 31 | }, 32 | "componentName" : "forceCommunity:topicDescription", 33 | "id" : "5e8db45c-ab24-4c88-a4a6-4dca5d8541f1", 34 | "renderPriority" : "NEUTRAL", 35 | "renditionMap" : { }, 36 | "type" : "component" 37 | }, { 38 | "componentAttributes" : { 39 | "showArticles" : true, 40 | "showFollowers" : true, 41 | "showPosts" : true, 42 | "showTalkingAbout" : true, 43 | "topicId" : "{!recordId}" 44 | }, 45 | "componentName" : "forceCommunity:topicMetrics", 46 | "id" : "f514c2f3-8f5a-433f-83bc-2378b08f31fd", 47 | "renderPriority" : "NEUTRAL", 48 | "renditionMap" : { }, 49 | "type" : "component" 50 | }, { 51 | "componentAttributes" : { 52 | "buttonAlignment" : "center", 53 | "buttonBgColor" : "", 54 | "buttonBgHoverColor" : "", 55 | "buttonBorderColor" : "", 56 | "buttonMaxWidth" : 100, 57 | "buttonRadius" : 0, 58 | "buttonTextColor" : "", 59 | "buttonTextHoverColor" : "", 60 | "confirmationMessage" : "Got it!", 61 | "followUpPromptLabel" : "Can we close your question?", 62 | "isAskFollowPromptEnabled" : true, 63 | "isIncludeArticlesEnabled" : false, 64 | "isIncludeDiscussionsEnabled" : true, 65 | "isInitialSatisfactionPromptEnabled" : true, 66 | "isPublisherDeflectionEnabled" : true, 67 | "label" : "Ask a Question", 68 | "maxSuggestions" : 5, 69 | "satisfactionPromptLabel" : "Did we help to answer your question?", 70 | "showDetails" : false, 71 | "showTopics" : true, 72 | "uneditableTopics" : false 73 | }, 74 | "componentName" : "forceCommunity:askCommunity", 75 | "id" : "df4683f9-d02e-47d6-a35b-75f056cc525c", 76 | "renderPriority" : "NEUTRAL", 77 | "renditionMap" : { }, 78 | "type" : "component" 79 | }, { 80 | "componentAttributes" : { 81 | "buttonAlignment" : "center", 82 | "buttonBgColor" : "", 83 | "buttonBgHoverColor" : "", 84 | "buttonBorderColor" : "", 85 | "buttonMaxWidth" : 100, 86 | "buttonRadius" : 0, 87 | "buttonTextColor" : "", 88 | "buttonTextHoverColor" : "", 89 | "recordId" : "{!recordId}", 90 | "showNotificationMenu" : true 91 | }, 92 | "componentName" : "forceCommunity:follow", 93 | "id" : "fd20a24e-9d07-4b98-a7bd-cea67bd3487e", 94 | "renderPriority" : "NEUTRAL", 95 | "renditionMap" : { }, 96 | "type" : "component" 97 | } ], 98 | "id" : "63a55974-a46f-4bf6-83f3-ec2efadc7b4c", 99 | "regionName" : "featured", 100 | "type" : "region" 101 | }, { 102 | "components" : [ { 103 | "componentAttributes" : { 104 | "activeTab" : "{!selectedTab}", 105 | "articleListPageSize" : 10, 106 | "articleTabLabel" : "Articles", 107 | "defaultSortOrderCompactFeed" : "Relevance", 108 | "defaultSortOrderFullFeed" : "Relevance", 109 | "discussionTabLabel" : "Discussions", 110 | "searchTerm" : "{!term}", 111 | "showArticleTab" : true, 112 | "showCompactFeedInDiscussion" : true, 113 | "topicId" : "{!recordId}" 114 | }, 115 | "componentName" : "forceCommunity:resultsList", 116 | "id" : "fbaeb86e-d230-423f-b984-cba6703d454c", 117 | "renderPriority" : "NEUTRAL", 118 | "renditionMap" : { }, 119 | "type" : "component" 120 | } ], 121 | "id" : "16f3b504-97ba-4102-9f8b-7dfb4dfc7b01", 122 | "regionName" : "content", 123 | "type" : "region" 124 | }, { 125 | "components" : [ { 126 | "componentAttributes" : { 127 | "showTopicsMetric" : true, 128 | "title" : "Related Topics", 129 | "topicId" : "{!recordId}" 130 | }, 131 | "componentName" : "forceCommunity:relatedTopics", 132 | "id" : "4b51bbde-7102-4708-97fe-edffc427beba", 133 | "renderPriority" : "NEUTRAL", 134 | "renditionMap" : { }, 135 | "type" : "component" 136 | }, { 137 | "componentAttributes" : { 138 | "title" : "Knowledgeable People", 139 | "topicId" : "{!recordId}" 140 | }, 141 | "componentName" : "forceCommunity:knowledgeablePeople", 142 | "id" : "621bc867-5b34-4dde-92df-c3afdb4465fa", 143 | "renderPriority" : "NEUTRAL", 144 | "renditionMap" : { }, 145 | "type" : "component" 146 | } ], 147 | "id" : "592f8062-e3b1-45a8-96c3-8cba86159c3c", 148 | "regionName" : "sidebar", 149 | "type" : "region" 150 | }, { 151 | "components" : [ { 152 | "componentAttributes" : { 153 | "askCommunityLabel" : "Ask a Question", 154 | "buttonBgColor" : "", 155 | "buttonBgHoverColor" : "", 156 | "buttonBorderColor" : "", 157 | "buttonRadius" : 0, 158 | "buttonTextColor" : "", 159 | "buttonTextHoverColor" : "", 160 | "buttonTwoBgColor" : "", 161 | "buttonTwoBgHoverColor" : "", 162 | "buttonTwoBorderColor" : "", 163 | "buttonTwoRadius" : 0, 164 | "buttonTwoTextColor" : "", 165 | "buttonTwoTextHoverColor" : "", 166 | "confirmationMessage" : "Got it!", 167 | "contactSupportLabel" : "Contact Support", 168 | "followUpPromptLabel" : "Can we close your question?", 169 | "headerLabel" : "Don't see what you're looking for?", 170 | "isAskFollowPromptEnabled" : true, 171 | "isIncludeArticlesEnabled" : false, 172 | "isIncludeDiscussionsEnabled" : true, 173 | "isInitialSatisfactionPromptEnabled" : true, 174 | "isPublisherDeflectionEnabled" : true, 175 | "maxSuggestions" : 5, 176 | "satisfactionPromptLabel" : "Did we help to answer your question?", 177 | "showDetails" : false, 178 | "showTopics" : true 179 | }, 180 | "componentName" : "siteforce:napiliFooter", 181 | "id" : "9cd6caa5-9308-424c-845e-6a1057646af5", 182 | "renderPriority" : "NEUTRAL", 183 | "renditionMap" : { }, 184 | "type" : "component" 185 | } ], 186 | "id" : "5aef9bef-5d0c-4eb4-aa65-209cdab3f01d", 187 | "regionName" : "footer", 188 | "type" : "region" 189 | }, { 190 | "components" : [ { 191 | "componentAttributes" : { 192 | "customHeadTags" : "", 193 | "description" : "{!Record.Description}", 194 | "title" : "{!Record._Title}" 195 | }, 196 | "componentName" : "forceCommunity:seoAssistant", 197 | "id" : "1b6c2346-60a7-42b9-931f-6baf9697aef1", 198 | "renditionMap" : { }, 199 | "type" : "component" 200 | } ], 201 | "id" : "52fcd662-1d89-46e1-96d7-38828eb2a815", 202 | "regionName" : "sfdcHiddenRegion", 203 | "type" : "region" 204 | } ], 205 | "themeLayoutType" : "Inner", 206 | "type" : "view", 207 | "viewType" : "topic" 208 | } --------------------------------------------------------------------------------