├── .forceignore ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_issue.md │ ├── documentation.md │ └── feature_request.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── cumulusci.yml ├── datasets ├── data.sql ├── default │ ├── default.dataset.sql │ └── default.mapping.yml ├── dev │ ├── dev.dataset.sql │ └── dev.mapping.yml ├── mapping.yml ├── qa │ ├── qa.dataset.sql │ └── qa.mapping.yml └── snowfakery │ └── school_recipe.yml ├── docs ├── 2g-packaging.md ├── CumulusCI-notes.md ├── GIT-notes.md ├── Prod-Install.md ├── _config.yml ├── files │ ├── USTEvent_DOCS.zip │ └── index ├── scatch-org-creation.md └── working-together.md ├── force-app ├── main │ └── default │ │ ├── applications │ │ ├── Summit_Events.app-meta.xml │ │ └── Summit_Events_Lightning.app-meta.xml │ │ ├── classes │ │ ├── SummitEventsAddToCalendarController.cls │ │ ├── SummitEventsAddToCalendarController.cls-meta.xml │ │ ├── SummitEventsAdditionalQuestionsCtlr.cls │ │ ├── SummitEventsAdditionalQuestionsCtlr.cls-meta.xml │ │ ├── SummitEventsAfterLeadConversion.cls │ │ ├── SummitEventsAfterLeadConversion.cls-meta.xml │ │ ├── SummitEventsAppointmentTriggerHandler.cls │ │ ├── SummitEventsAppointmentTriggerHandler.cls-meta.xml │ │ ├── SummitEventsCancelReviewController.cls │ │ ├── SummitEventsCancelReviewController.cls-meta.xml │ │ ├── SummitEventsConfirmationController.cls │ │ ├── SummitEventsConfirmationController.cls-meta.xml │ │ ├── SummitEventsContactMatching.cls │ │ ├── SummitEventsContactMatching.cls-meta.xml │ │ ├── SummitEventsController.cls │ │ ├── SummitEventsController.cls-meta.xml │ │ ├── SummitEventsDonationController.cls │ │ ├── SummitEventsDonationController.cls-meta.xml │ │ ├── SummitEventsFeed.cls │ │ ├── SummitEventsFeed.cls-meta.xml │ │ ├── SummitEventsGeneratedItinerariesExt.cls │ │ ├── SummitEventsGeneratedItinerariesExt.cls-meta.xml │ │ ├── SummitEventsHostAssignmentExtension.cls │ │ ├── SummitEventsHostAssignmentExtension.cls-meta.xml │ │ ├── SummitEventsInfo.cls │ │ ├── SummitEventsInfo.cls-meta.xml │ │ ├── SummitEventsLetterheadLookupExtension.cls │ │ ├── SummitEventsLetterheadLookupExtension.cls-meta.xml │ │ ├── SummitEventsNamespace.cls │ │ ├── SummitEventsNamespace.cls-meta.xml │ │ ├── SummitEventsParkingPassController.cls │ │ ├── SummitEventsParkingPassController.cls-meta.xml │ │ ├── SummitEventsPrintItinerariesExtension.cls │ │ ├── SummitEventsPrintItinerariesExtension.cls-meta.xml │ │ ├── SummitEventsRegisterAppointmentCtlr.cls │ │ ├── SummitEventsRegisterAppointmentCtlr.cls-meta.xml │ │ ├── SummitEventsRegisterController.cls │ │ ├── SummitEventsRegisterController.cls-meta.xml │ │ ├── SummitEventsRegisterGuestsController.cls │ │ ├── SummitEventsRegisterGuestsController.cls-meta.xml │ │ ├── SummitEventsRegistration.cls │ │ ├── SummitEventsRegistration.cls-meta.xml │ │ ├── SummitEventsShared.cls │ │ ├── SummitEventsShared.cls-meta.xml │ │ ├── SummitEventsSubmitController.cls │ │ ├── SummitEventsSubmitController.cls-meta.xml │ │ ├── summitEventsRecaptcha.cls │ │ └── summitEventsRecaptcha.cls-meta.xml │ │ ├── contentassets │ │ ├── SummitEventsLHHeader.asset │ │ ├── SummitEventsLHHeader.asset-meta.xml │ │ ├── summit_events_logo128x128.asset │ │ └── summit_events_logo128x128.asset-meta.xml │ │ ├── dashboards │ │ ├── SummitEventsDashboards.dashboardFolder-meta.xml │ │ └── SummitEventsDashboards │ │ │ └── inIECgxGBiqHhWefTeLlTnDyThnTfq.dashboard-meta.xml │ │ ├── documents │ │ ├── Letterheads.documentFolder-meta.xml │ │ └── Letterheads │ │ │ ├── SummitEventsLHHeader.document-meta.xml │ │ │ └── SummitEventsLHHeader.jpg │ │ ├── flexipages │ │ ├── Summit_Events_Appointment_Type_Record_Page.flexipage-meta.xml │ │ ├── Summit_Events_Instance_Record_Page.flexipage-meta.xml │ │ ├── Summit_Events_Payment_Record_Page.flexipage-meta.xml │ │ ├── Summit_Events_Payment_Record_Page1.flexipage-meta.xml │ │ ├── Summit_Events_Record_Page.flexipage-meta.xml │ │ └── Summit_Events_Registration_Record_Page.flexipage-meta.xml │ │ ├── globalValueSets │ │ ├── Academic_Majors.globalValueSet-meta.xml │ │ ├── Active_Status.globalValueSet-meta.xml │ │ ├── Appointment_Category.globalValueSet-meta.xml │ │ ├── Appointment_Type.globalValueSet-meta.xml │ │ ├── Buildings.globalValueSet-meta.xml │ │ ├── Country.globalValueSet-meta.xml │ │ ├── Location.globalValueSet-meta.xml │ │ ├── State.globalValueSet-meta.xml │ │ ├── Summit_Events_Appointment_Fields.globalValueSet-meta.xml │ │ └── Varsity_Sports_List.globalValueSet-meta.xml │ │ ├── layouts │ │ ├── Summit_Events_Appointment_Type__c-Summit Events Appointment Default Layout.layout-meta.xml │ │ ├── Summit_Events_Appointments__c-Summit Events Appointment Default Layout.layout-meta.xml │ │ ├── Summit_Events_Contact_Matching_Mapping__mdt-Summit Events Contact Matching Mapping Layout.layout-meta.xml │ │ ├── Summit_Events_Email__c-Summit Events Email Default Layout.layout-meta.xml │ │ ├── Summit_Events_Fee_Allocation__c-Summit Events Fee Allocation Layout.layout-meta.xml │ │ ├── Summit_Events_Fee__c-Summit Events Fee Layout.layout-meta.xml │ │ ├── Summit_Events_Host__c-Class Layout.layout-meta.xml │ │ ├── Summit_Events_Host__c-Coach Layout.layout-meta.xml │ │ ├── Summit_Events_Host__c-Faculty Layout.layout-meta.xml │ │ ├── Summit_Events_Host__c-Housing Layout.layout-meta.xml │ │ ├── Summit_Events_Host__c-UST Event Host Layout.layout-meta.xml │ │ ├── Summit_Events_Instance__c-Summit Events Instance Default Layout.layout-meta.xml │ │ ├── Summit_Events_Lead_Matching_Mapping__mdt-Summit Events Lead Matching Mapping Layout.layout-meta.xml │ │ ├── Summit_Events_Payment__c-Summit Events Payment Layout.layout-meta.xml │ │ ├── Summit_Events_Question__c-Summit Events Question Layout.layout-meta.xml │ │ ├── Summit_Events_Registration__c-Summit Events Registration Default Layout.layout-meta.xml │ │ └── Summit_Events__c-Summit Event Default Layout.layout-meta.xml │ │ ├── letterhead │ │ └── SummitEvents_Test_Letterhead.letter-meta.xml │ │ ├── matchingRules │ │ └── Contact.matchingRule-meta.xml │ │ ├── objects │ │ ├── Contact │ │ │ └── fields │ │ │ │ └── Created_with_Summit_Events__c.field-meta.xml │ │ ├── Summit_Events_Appointment_Type__c │ │ │ ├── Summit_Events_Appointment_Type__c.object-meta.xml │ │ │ ├── fields │ │ │ │ ├── Appointment_Category__c.field-meta.xml │ │ │ │ ├── Appointment_Fee_Additional_Allocation__c.field-meta.xml │ │ │ │ ├── Appointment_Fee_Additional__c.field-meta.xml │ │ │ │ ├── Appointment_Fee_Allocation__c.field-meta.xml │ │ │ │ ├── Appointment_Fee__c.field-meta.xml │ │ │ │ ├── Appointment_Limits__c.field-meta.xml │ │ │ │ ├── Appointment_Type_Status__c.field-meta.xml │ │ │ │ ├── Appointment_Type__c.field-meta.xml │ │ │ │ ├── Auto_Add_Time__c.field-meta.xml │ │ │ │ ├── Auto_Confirm_Appointment__c.field-meta.xml │ │ │ │ ├── Auto_add_building__c.field-meta.xml │ │ │ │ ├── Chosen_State__c.field-meta.xml │ │ │ │ ├── Custom_Picklist__c.field-meta.xml │ │ │ │ ├── Date_Available_End__c.field-meta.xml │ │ │ │ ├── Date_Available_Start__c.field-meta.xml │ │ │ │ ├── Day_of_Week_Availability__c.field-meta.xml │ │ │ │ ├── Description__c.field-meta.xml │ │ │ │ ├── Do_Not_Show_Time__c.field-meta.xml │ │ │ │ ├── Registrant_Input__c.field-meta.xml │ │ │ │ ├── Required_Appointment__c.field-meta.xml │ │ │ │ ├── Restrict_To_Instance_Title__c.field-meta.xml │ │ │ │ ├── Sort_Order__c.field-meta.xml │ │ │ │ ├── Summit_Events__c.field-meta.xml │ │ │ │ └── Title__c.field-meta.xml │ │ │ └── listViews │ │ │ │ └── All.listView-meta.xml │ │ ├── Summit_Events_Appointments__c │ │ │ ├── Summit_Events_Appointments__c.object-meta.xml │ │ │ ├── fields │ │ │ │ ├── Appointment_Category__c.field-meta.xml │ │ │ │ ├── Appointment_Contact_Email__c.field-meta.xml │ │ │ │ ├── Appointment_Contact_Name__c.field-meta.xml │ │ │ │ ├── Appointment_Date_Time__c.field-meta.xml │ │ │ │ ├── Appointment_Date__c.field-meta.xml │ │ │ │ ├── Appointment_Detail__c.field-meta.xml │ │ │ │ ├── Appointment_Status__c.field-meta.xml │ │ │ │ ├── Appointment_Time_Formatted__c.field-meta.xml │ │ │ │ ├── Appointment_Time_Options__c.field-meta.xml │ │ │ │ ├── Appointment_Time__c.field-meta.xml │ │ │ │ ├── Appointment_Title__c.field-meta.xml │ │ │ │ ├── Appointment_Type__c.field-meta.xml │ │ │ │ ├── Appointment_Virtual_Meeting_URL__c.field-meta.xml │ │ │ │ ├── Building__c.field-meta.xml │ │ │ │ ├── Chosen_State__c.field-meta.xml │ │ │ │ ├── Class_Title__c.field-meta.xml │ │ │ │ ├── Client_Created_Appointment__c.field-meta.xml │ │ │ │ ├── Contact__c.field-meta.xml │ │ │ │ ├── Description__c.field-meta.xml │ │ │ │ ├── Do_Not_Show_Time__c.field-meta.xml │ │ │ │ ├── Event_Appointment_Type__c.field-meta.xml │ │ │ │ ├── Event_Host__c.field-meta.xml │ │ │ │ ├── Event_Reg_ID__c.field-meta.xml │ │ │ │ ├── Event_Registration_Date__c.field-meta.xml │ │ │ │ ├── Event_Registration__c.field-meta.xml │ │ │ │ ├── Faculty_Staff_Member__c.field-meta.xml │ │ │ │ ├── Host_Location__c.field-meta.xml │ │ │ │ ├── Host_Name__c.field-meta.xml │ │ │ │ ├── Registrant_Input__c.field-meta.xml │ │ │ │ ├── Room__c.field-meta.xml │ │ │ │ ├── Sort_Order__c.field-meta.xml │ │ │ │ └── UG_Appointment_Category_Order__c.field-meta.xml │ │ │ ├── listViews │ │ │ │ ├── All.listView-meta.xml │ │ │ │ ├── All_Appointments.listView-meta.xml │ │ │ │ ├── FA_Appt_Next_3_Weeks.listView-meta.xml │ │ │ │ ├── FA_Appt_Next_Month.listView-meta.xml │ │ │ │ ├── FA_Appt_This_Month.listView-meta.xml │ │ │ │ ├── FA_Appt_This_Week.listView-meta.xml │ │ │ │ ├── FA_Appt_Today.listView-meta.xml │ │ │ │ └── FA_Appt_Tomorrow.listView-meta.xml │ │ │ └── webLinks │ │ │ │ └── Assign_Host.webLink-meta.xml │ │ ├── Summit_Events_Contact_Matching_Mapping__mdt │ │ │ ├── Summit_Events_Contact_Matching_Mapping__mdt.object-meta.xml │ │ │ ├── fields │ │ │ │ ├── Contact_Field_API_Name__c.field-meta.xml │ │ │ │ ├── Contact_Matching_Method__c.field-meta.xml │ │ │ │ ├── Matching_Only__c.field-meta.xml │ │ │ │ ├── Source_Object__c.field-meta.xml │ │ │ │ ├── Source_Type__c.field-meta.xml │ │ │ │ └── Source_Value__c.field-meta.xml │ │ │ └── validationRules │ │ │ │ ├── Fields_Types_must_have_Source_Objects.validationRule-meta.xml │ │ │ │ └── Hardcoded_Types_cant_have_Source_Object.validationRule-meta.xml │ │ ├── Summit_Events_Email__c │ │ │ ├── Summit_Events_Email__c.object-meta.xml │ │ │ ├── fields │ │ │ │ ├── Action_Status__c.field-meta.xml │ │ │ │ ├── Action_Sub_status__c.field-meta.xml │ │ │ │ ├── BCC_Email__c.field-meta.xml │ │ │ │ ├── Email_Content_Instructions__c.field-meta.xml │ │ │ │ ├── Email_Content__c.field-meta.xml │ │ │ │ ├── Email_From__c.field-meta.xml │ │ │ │ ├── Email_Subject__c.field-meta.xml │ │ │ │ ├── Event__c.field-meta.xml │ │ │ │ ├── Letterhead_HTML__c.field-meta.xml │ │ │ │ ├── Letterhead_Id__c.field-meta.xml │ │ │ │ ├── Letterhead_Name__c.field-meta.xml │ │ │ │ ├── Letterhead__c.field-meta.xml │ │ │ │ ├── Org_Email_Id__c.field-meta.xml │ │ │ │ └── Org_Email__c.field-meta.xml │ │ │ ├── listViews │ │ │ │ └── All.listView-meta.xml │ │ │ └── webLinks │ │ │ │ └── Letter_Head_Definition.webLink-meta.xml │ │ ├── Summit_Events_Fee_Allocation__c │ │ │ ├── Summit_Events_Fee_Allocation__c.object-meta.xml │ │ │ └── listViews │ │ │ │ └── All.listView-meta.xml │ │ ├── Summit_Events_Fee__c │ │ │ ├── Summit_Events_Fee__c.object-meta.xml │ │ │ ├── fields │ │ │ │ ├── Description__c.field-meta.xml │ │ │ │ ├── Event_Appointment_Type__c.field-meta.xml │ │ │ │ ├── Event_Fee_Allocation__c.field-meta.xml │ │ │ │ ├── Event_Fee_Type__c.field-meta.xml │ │ │ │ ├── Event_Fee__c.field-meta.xml │ │ │ │ ├── Event_Registration__c.field-meta.xml │ │ │ │ ├── Summit_Events_Payment__c.field-meta.xml │ │ │ │ └── Summit_Events__c.field-meta.xml │ │ │ └── listViews │ │ │ │ └── All.listView-meta.xml │ │ ├── Summit_Events_Host__c │ │ │ ├── Summit_Events_Host__c.object-meta.xml │ │ │ ├── fields │ │ │ │ ├── Additional_Comments__c.field-meta.xml │ │ │ │ ├── Assigned__c.field-meta.xml │ │ │ │ ├── Building__c.field-meta.xml │ │ │ │ ├── Contact__c.field-meta.xml │ │ │ │ ├── Course_Name__c.field-meta.xml │ │ │ │ ├── Department__c.field-meta.xml │ │ │ │ ├── Event_Instance__c.field-meta.xml │ │ │ │ ├── First_Name__c.field-meta.xml │ │ │ │ ├── Formatted_Time__c.field-meta.xml │ │ │ │ ├── Gender__c.field-meta.xml │ │ │ │ ├── Last_Name__c.field-meta.xml │ │ │ │ ├── Location__c.field-meta.xml │ │ │ │ ├── Max_Available__c.field-meta.xml │ │ │ │ ├── Preferred_Title__c.field-meta.xml │ │ │ │ ├── Remaining__c.field-meta.xml │ │ │ │ ├── Time__c.field-meta.xml │ │ │ │ └── Undergrad_Major__c.field-meta.xml │ │ │ ├── listViews │ │ │ │ └── All.listView-meta.xml │ │ │ ├── recordTypes │ │ │ │ ├── Class.recordType-meta.xml │ │ │ │ ├── Coach.recordType-meta.xml │ │ │ │ ├── Counselor.recordType-meta.xml │ │ │ │ ├── Faculty.recordType-meta.xml │ │ │ │ └── Housing.recordType-meta.xml │ │ │ └── webLinks │ │ │ │ └── Assign_Host.webLink-meta.xml │ │ ├── Summit_Events_Instance__c │ │ │ ├── Summit_Events_Instance__c.object-meta.xml │ │ │ ├── compactLayouts │ │ │ │ └── Instance_Highlight_Panel.compactLayout-meta.xml │ │ │ ├── fields │ │ │ │ ├── Active_Status__c.field-meta.xml │ │ │ │ ├── Admin_Open_Registration_Link__c.field-meta.xml │ │ │ │ ├── Admin_Open_Registration__c.field-meta.xml │ │ │ │ ├── Alternate_Registration_URL_Override__c.field-meta.xml │ │ │ │ ├── Attendee_List__c.field-meta.xml │ │ │ │ ├── Audience__c.field-meta.xml │ │ │ │ ├── Building_Override__c.field-meta.xml │ │ │ │ ├── Capacity_Control__c.field-meta.xml │ │ │ │ ├── Capacity__c.field-meta.xml │ │ │ │ ├── Category__c.field-meta.xml │ │ │ │ ├── Confirmed_Attendees__c.field-meta.xml │ │ │ │ ├── Count_of_Attendees__c.field-meta.xml │ │ │ │ ├── Current_Available_Capacity__c.field-meta.xml │ │ │ │ ├── Event_Fee_Additional_Allocation_Override__c.field-meta.xml │ │ │ │ ├── Event_Fee_Additional_Override__c.field-meta.xml │ │ │ │ ├── Event_Fee_Allocation_Override__c.field-meta.xml │ │ │ │ ├── Event_Fee_Override__c.field-meta.xml │ │ │ │ ├── Event_Name__c.field-meta.xml │ │ │ │ ├── Event_Type__c.field-meta.xml │ │ │ │ ├── Event__c.field-meta.xml │ │ │ │ ├── Feed_Registration_Button_Text_Override__c.field-meta.xml │ │ │ │ ├── Instance_End_Date__c.field-meta.xml │ │ │ │ ├── Instance_End_Time__c.field-meta.xml │ │ │ │ ├── Instance_Short_Description__c.field-meta.xml │ │ │ │ ├── Instance_Start_Date__c.field-meta.xml │ │ │ │ ├── Instance_Start_Time__c.field-meta.xml │ │ │ │ ├── Instance_Time_Zone__c.field-meta.xml │ │ │ │ ├── Instance_Title__c.field-meta.xml │ │ │ │ ├── Location_Address_Override__c.field-meta.xml │ │ │ │ ├── Location_Map_Link_Override__c.field-meta.xml │ │ │ │ ├── Location_Title_Override__c.field-meta.xml │ │ │ │ ├── Location_Type_Override__c.field-meta.xml │ │ │ │ ├── Open_Registration__c.field-meta.xml │ │ │ │ ├── Primary_Attendees__c.field-meta.xml │ │ │ │ ├── Primary_Confirmed_Attendees__c.field-meta.xml │ │ │ │ ├── Private_Instance__c.field-meta.xml │ │ │ │ ├── Registration_Close_Date__c.field-meta.xml │ │ │ │ ├── Registration_Close_Time__c.field-meta.xml │ │ │ │ ├── Registration_Link__c.field-meta.xml │ │ │ │ ├── Registration_QR_Code__c.field-meta.xml │ │ │ │ ├── Virtual_Appointment_Link__c.field-meta.xml │ │ │ │ └── Virtual_Meeting_Link__c.field-meta.xml │ │ │ ├── listViews │ │ │ │ ├── All_Instances.listView-meta.xml │ │ │ │ ├── All_Sessions.listView-meta.xml │ │ │ │ ├── All_Visits_Today.listView-meta.xml │ │ │ │ └── Community_Display.listView-meta.xml │ │ │ └── validationRules │ │ │ │ ├── start_date_before_end_date.validationRule-meta.xml │ │ │ │ └── start_time_before_end_time.validationRule-meta.xml │ │ ├── Summit_Events_Lead_Matching_Mapping__mdt │ │ │ ├── Summit_Events_Lead_Matching_Mapping__mdt.object-meta.xml │ │ │ └── fields │ │ │ │ ├── Lead_Field_API_Name__c.field-meta.xml │ │ │ │ ├── Lead_Matching_Method__c.field-meta.xml │ │ │ │ ├── Matching_Only__c.field-meta.xml │ │ │ │ ├── Source_Object__c.field-meta.xml │ │ │ │ ├── Source_Type__c.field-meta.xml │ │ │ │ └── Source_Value__c.field-meta.xml │ │ ├── Summit_Events_Payment__c │ │ │ ├── Summit_Events_Payment__c.object-meta.xml │ │ │ ├── fields │ │ │ │ ├── Account_Number__c.field-meta.xml │ │ │ │ ├── Address_1__c.field-meta.xml │ │ │ │ ├── Address_2__c.field-meta.xml │ │ │ │ ├── Card_Type__c.field-meta.xml │ │ │ │ ├── City__c.field-meta.xml │ │ │ │ ├── Country__c.field-meta.xml │ │ │ │ ├── Email_Address__c.field-meta.xml │ │ │ │ ├── Event_Registration__c.field-meta.xml │ │ │ │ ├── GatewayApprovalCode__c.field-meta.xml │ │ │ │ ├── Gateway_Session_Identifier__c.field-meta.xml │ │ │ │ ├── Method_of_Payment__c.field-meta.xml │ │ │ │ ├── Name_On_Account__c.field-meta.xml │ │ │ │ ├── Payment_Amount__c.field-meta.xml │ │ │ │ ├── Payment_Defer_Date__c.field-meta.xml │ │ │ │ ├── Payment_Dispute__c.field-meta.xml │ │ │ │ ├── Payment_Email_Address__c.field-meta.xml │ │ │ │ ├── Payment_Forfeit_Date__c.field-meta.xml │ │ │ │ ├── Payment_Method_Expiration_Date__c.field-meta.xml │ │ │ │ ├── Payment_Method__c.field-meta.xml │ │ │ │ ├── Payment_Received_Date__c.field-meta.xml │ │ │ │ ├── Payment_Refund_Date__c.field-meta.xml │ │ │ │ ├── Payment_Returned_Date__c.field-meta.xml │ │ │ │ ├── Payment_Status__c.field-meta.xml │ │ │ │ ├── Phone__c.field-meta.xml │ │ │ │ ├── State__c.field-meta.xml │ │ │ │ ├── TouchnetReceiptNumber__c.field-meta.xml │ │ │ │ └── Zip__c.field-meta.xml │ │ │ └── listViews │ │ │ │ └── All.listView-meta.xml │ │ ├── Summit_Events_Question__c │ │ │ ├── Summit_Events_Question__c.object-meta.xml │ │ │ ├── fields │ │ │ │ ├── Controlling_Logic__c.field-meta.xml │ │ │ │ ├── Controlling_Question__c.field-meta.xml │ │ │ │ ├── Default_Value__c.field-meta.xml │ │ │ │ ├── Display_Order__c.field-meta.xml │ │ │ │ ├── Display_Style__c.field-meta.xml │ │ │ │ ├── Error_Assist_Text__c.field-meta.xml │ │ │ │ ├── Event__c.field-meta.xml │ │ │ │ ├── Existing_Picklist_Values__c.field-meta.xml │ │ │ │ ├── Help_Text__c.field-meta.xml │ │ │ │ ├── Instructions__c.field-meta.xml │ │ │ │ ├── Is_Visible__c.field-meta.xml │ │ │ │ ├── Lookup_Fields__c.field-meta.xml │ │ │ │ ├── Lookup_No_Results_Label__c.field-meta.xml │ │ │ │ ├── Lookup_Object__c.field-meta.xml │ │ │ │ ├── Lookup_Order_By__c.field-meta.xml │ │ │ │ ├── Lookup_Results_Icon__c.field-meta.xml │ │ │ │ ├── Lookup_Secondary_Input_Instructions__c.field-meta.xml │ │ │ │ ├── Lookup_Secondary_Input_Link_Text__c.field-meta.xml │ │ │ │ ├── Lookup_Secondary_Value_Field__c.field-meta.xml │ │ │ │ ├── Lookup_Where_Clause__c.field-meta.xml │ │ │ │ ├── Map_to_Field__c.field-meta.xml │ │ │ │ ├── Picklist_Values_Long__c.field-meta.xml │ │ │ │ ├── Picklist_Values__c.field-meta.xml │ │ │ │ ├── Question_Field_Type__c.field-meta.xml │ │ │ │ ├── Question_Label__c.field-meta.xml │ │ │ │ ├── Registrant_Type__c.field-meta.xml │ │ │ │ ├── Required__c.field-meta.xml │ │ │ │ └── Text_Limit__c.field-meta.xml │ │ │ ├── listViews │ │ │ │ └── All.listView-meta.xml │ │ │ └── validationRules │ │ │ │ ├── All_Lookup_fields_require_values.validationRule-meta.xml │ │ │ │ └── All_Picklist_fields_require_values.validationRule-meta.xml │ │ ├── Summit_Events_Registration__c │ │ │ ├── Summit_Events_Registration__c.object-meta.xml │ │ │ ├── compactLayouts │ │ │ │ └── Registration_Highlights.compactLayout-meta.xml │ │ │ ├── fields │ │ │ │ ├── Accessibility_Need_Detail__c.field-meta.xml │ │ │ │ ├── Accessibility_Need__c.field-meta.xml │ │ │ │ ├── Actual_Number_of_Guests__c.field-meta.xml │ │ │ │ ├── Add_Info_Answer_1__c.field-meta.xml │ │ │ │ ├── Add_Info_Answer_2__c.field-meta.xml │ │ │ │ ├── Add_Info_Answer_3__c.field-meta.xml │ │ │ │ ├── Add_Info_Answer_4__c.field-meta.xml │ │ │ │ ├── Add_Info_Answer_5__c.field-meta.xml │ │ │ │ ├── Add_Info_Question_1__c.field-meta.xml │ │ │ │ ├── Add_Info_Question_2__c.field-meta.xml │ │ │ │ ├── Add_Info_Question_3__c.field-meta.xml │ │ │ │ ├── Add_Info_Question_4__c.field-meta.xml │ │ │ │ ├── Add_Info_Question_5__c.field-meta.xml │ │ │ │ ├── Add_To_Calendar_Link__c.field-meta.xml │ │ │ │ ├── Add_To_Google_Calendar_Link__c.field-meta.xml │ │ │ │ ├── Add_To_Outlook_Web_Calendar__c.field-meta.xml │ │ │ │ ├── Add_To_Yahoo_Calendar__c.field-meta.xml │ │ │ │ ├── Add_to_Apple_Calendar__c.field-meta.xml │ │ │ │ ├── Add_to_Outlook_Calendar__c.field-meta.xml │ │ │ │ ├── Answer_1_Numeric__c.field-meta.xml │ │ │ │ ├── Answer_2_Numeric__c.field-meta.xml │ │ │ │ ├── Answer_3_Numeric__c.field-meta.xml │ │ │ │ ├── Answer_4_Numeric__c.field-meta.xml │ │ │ │ ├── Answer_5_Numeric__c.field-meta.xml │ │ │ │ ├── Appointment_Table__c.field-meta.xml │ │ │ │ ├── BCC_Transactional_Email_Statuses__c.field-meta.xml │ │ │ │ ├── BCC_Transactional_Emails__c.field-meta.xml │ │ │ │ ├── Campus_Tour_Location__c.field-meta.xml │ │ │ │ ├── Campus_Tour_Time__c.field-meta.xml │ │ │ │ ├── Confirmation_Call_Result__c.field-meta.xml │ │ │ │ ├── Contact_Name__c.field-meta.xml │ │ │ │ ├── Contact__c.field-meta.xml │ │ │ │ ├── Date_All_Appointments_Confirmed_del__c.field-meta.xml │ │ │ │ ├── Dietary_Ristrictions__c.field-meta.xml │ │ │ │ ├── Display_Attendance_Publicly__c.field-meta.xml │ │ │ │ ├── Encrypted_Registration_Id_1__c.field-meta.xml │ │ │ │ ├── Encrypted_Registration_Id_2__c.field-meta.xml │ │ │ │ ├── Event_Instance_Date_Time_Formatted__c.field-meta.xml │ │ │ │ ├── Event_Instance_Date__c.field-meta.xml │ │ │ │ ├── Event_Instance_End_Date_Text__c.field-meta.xml │ │ │ │ ├── Event_Instance_End_Date__c.field-meta.xml │ │ │ │ ├── Event_Instance_End_Time_Text__c.field-meta.xml │ │ │ │ ├── Event_Instance_End_Time__c.field-meta.xml │ │ │ │ ├── Event_Instance_Start_Date_Text__c.field-meta.xml │ │ │ │ ├── Event_Instance_Start_Date__c.field-meta.xml │ │ │ │ ├── Event_Instance_Start_Time_Text__c.field-meta.xml │ │ │ │ ├── Event_Instance_Start_Time__c.field-meta.xml │ │ │ │ ├── Event_Instance_Time_Zone__c.field-meta.xml │ │ │ │ ├── Event_Instance_Title__c.field-meta.xml │ │ │ │ ├── Event_Instance__c.field-meta.xml │ │ │ │ ├── Event_Name__c.field-meta.xml │ │ │ │ ├── Event_Registration_Cancel_Link__c.field-meta.xml │ │ │ │ ├── Event_Registration_Requested_Date__c.field-meta.xml │ │ │ │ ├── Event_Type__c.field-meta.xml │ │ │ │ ├── Event_Website_Referrer__c.field-meta.xml │ │ │ │ ├── Event_Website__c.field-meta.xml │ │ │ │ ├── Event__c.field-meta.xml │ │ │ │ ├── Generated_Itinerary__c.field-meta.xml │ │ │ │ ├── Generated_Requested_Appointments__c.field-meta.xml │ │ │ │ ├── Guest_Host_Status__c.field-meta.xml │ │ │ │ ├── Guest_Host__c.field-meta.xml │ │ │ │ ├── Guest_JSON__c.field-meta.xml │ │ │ │ ├── Hosted_Registrants__c.field-meta.xml │ │ │ │ ├── Last_Name_as_Student__c.field-meta.xml │ │ │ │ ├── Lead__c.field-meta.xml │ │ │ │ ├── Location_Address__c.field-meta.xml │ │ │ │ ├── Location_Map_Link__c.field-meta.xml │ │ │ │ ├── Location_Title__c.field-meta.xml │ │ │ │ ├── Location_Type__c.field-meta.xml │ │ │ │ ├── Matching_Log__c.field-meta.xml │ │ │ │ ├── New_Contact_Created__c.field-meta.xml │ │ │ │ ├── New_Lead_Created__c.field-meta.xml │ │ │ │ ├── Number_of_Guests__c.field-meta.xml │ │ │ │ ├── Participation_Type__c.field-meta.xml │ │ │ │ ├── Payment_Gateway_Status__c.field-meta.xml │ │ │ │ ├── Preferred_Class_Year__c.field-meta.xml │ │ │ │ ├── Preferred_First_Name_Formatted__c.field-meta.xml │ │ │ │ ├── Preferred_Visit_Time__c.field-meta.xml │ │ │ │ ├── Presentation_Location__c.field-meta.xml │ │ │ │ ├── Presentation_Time__c.field-meta.xml │ │ │ │ ├── Registrant_Applicant_Type__c.field-meta.xml │ │ │ │ ├── Registrant_City__c.field-meta.xml │ │ │ │ ├── Registrant_College_Code__c.field-meta.xml │ │ │ │ ├── Registrant_College_Not_Found__c.field-meta.xml │ │ │ │ ├── Registrant_College_Year__c.field-meta.xml │ │ │ │ ├── Registrant_College__c.field-meta.xml │ │ │ │ ├── Registrant_Company_Organization__c.field-meta.xml │ │ │ │ ├── Registrant_Country__c.field-meta.xml │ │ │ │ ├── Registrant_Date_of_Birth_Text__c.field-meta.xml │ │ │ │ ├── Registrant_Date_of_Birth__c.field-meta.xml │ │ │ │ ├── Registrant_Do_Not_Call__c.field-meta.xml │ │ │ │ ├── Registrant_Email__c.field-meta.xml │ │ │ │ ├── Registrant_First_Name__c.field-meta.xml │ │ │ │ ├── Registrant_Gender__c.field-meta.xml │ │ │ │ ├── Registrant_High_School_Code__c.field-meta.xml │ │ │ │ ├── Registrant_High_School_Grad_Year__c.field-meta.xml │ │ │ │ ├── Registrant_High_School_Not_Found__c.field-meta.xml │ │ │ │ ├── Registrant_High_School__c.field-meta.xml │ │ │ │ ├── Registrant_Id_QR_Code__c.field-meta.xml │ │ │ │ ├── Registrant_Last_Name__c.field-meta.xml │ │ │ │ ├── Registrant_Mobile_Phone__c.field-meta.xml │ │ │ │ ├── Registrant_Name_Tag__c.field-meta.xml │ │ │ │ ├── Registrant_Other_Email__c.field-meta.xml │ │ │ │ ├── Registrant_Other_First_Name__c.field-meta.xml │ │ │ │ ├── Registrant_Other_Last_Name__c.field-meta.xml │ │ │ │ ├── Registrant_Other_Phone__c.field-meta.xml │ │ │ │ ├── Registrant_Other_Relationship__c.field-meta.xml │ │ │ │ ├── Registrant_Parent_Email__c.field-meta.xml │ │ │ │ ├── Registrant_Parent_First_Name__c.field-meta.xml │ │ │ │ ├── Registrant_Parent_Last_Name__c.field-meta.xml │ │ │ │ ├── Registrant_Parent_Phone__c.field-meta.xml │ │ │ │ ├── Registrant_Phone__c.field-meta.xml │ │ │ │ ├── Registrant_Postal_Code__c.field-meta.xml │ │ │ │ ├── Registrant_Preferred_First_Name__c.field-meta.xml │ │ │ │ ├── Registrant_Program_Interest__c.field-meta.xml │ │ │ │ ├── Registrant_Pronouns__c.field-meta.xml │ │ │ │ ├── Registrant_Receive_Texts__c.field-meta.xml │ │ │ │ ├── Registrant_State_Global__c.field-meta.xml │ │ │ │ ├── Registrant_State_Province__c.field-meta.xml │ │ │ │ ├── Registrant_State__c.field-meta.xml │ │ │ │ ├── Registrant_Street_1__c.field-meta.xml │ │ │ │ ├── Registrant_Street_2__c.field-meta.xml │ │ │ │ ├── Registrant_Third_Party_Status__c.field-meta.xml │ │ │ │ ├── Registrant_Title__c.field-meta.xml │ │ │ │ ├── Registrant_Zip__c.field-meta.xml │ │ │ │ ├── Relationship_To_Institution__c.field-meta.xml │ │ │ │ ├── Reminder_Call_Complete__c.field-meta.xml │ │ │ │ ├── Session__c.field-meta.xml │ │ │ │ ├── Status__c.field-meta.xml │ │ │ │ ├── Substatus__c.field-meta.xml │ │ │ │ ├── Total_Appointments__c.field-meta.xml │ │ │ │ ├── Total_Confirmed_Appointments__c.field-meta.xml │ │ │ │ ├── Total_Number_of_Guests__c.field-meta.xml │ │ │ │ ├── UG_Parking_Pass_Link__c.field-meta.xml │ │ │ │ ├── Virtual_Appointment_URL__c.field-meta.xml │ │ │ │ ├── Virtual_Meeting_URL__c.field-meta.xml │ │ │ │ ├── gclid__c.field-meta.xml │ │ │ │ ├── reCAPTCHA_Score__c.field-meta.xml │ │ │ │ ├── utm_campaign__c.field-meta.xml │ │ │ │ ├── utm_content__c.field-meta.xml │ │ │ │ ├── utm_creative_format__c.field-meta.xml │ │ │ │ ├── utm_id__c.field-meta.xml │ │ │ │ ├── utm_marketing_tactic__c.field-meta.xml │ │ │ │ ├── utm_medium__c.field-meta.xml │ │ │ │ ├── utm_source__c.field-meta.xml │ │ │ │ ├── utm_source_platform__c.field-meta.xml │ │ │ │ └── utm_term__c.field-meta.xml │ │ │ └── listViews │ │ │ │ ├── All.listView-meta.xml │ │ │ │ ├── Community_Display.listView-meta.xml │ │ │ │ ├── This_Month_s_Visits.listView-meta.xml │ │ │ │ ├── Upcoming_Registrations_Cancelled.listView-meta.xml │ │ │ │ ├── Upcoming_Registrations_Confirmed.listView-meta.xml │ │ │ │ └── Upcoming_Registrations_Not_Confirmed.listView-meta.xml │ │ ├── Summit_Events_Settings__c │ │ │ ├── Summit_Events_Settings__c.object-meta.xml │ │ │ └── fields │ │ │ │ ├── Community_Base_URL__c.field-meta.xml │ │ │ │ ├── Cookie_Encryption_Key__c.field-meta.xml │ │ │ │ ├── Default_Country__c.field-meta.xml │ │ │ │ ├── Managed_Package__c.field-meta.xml │ │ │ │ ├── Turn_off_Appointment_Trigger__c.field-meta.xml │ │ │ │ ├── Turn_off_Lead_Trigger__c.field-meta.xml │ │ │ │ ├── Turn_off_Registration_Trigger__c.field-meta.xml │ │ │ │ ├── reCAPTCHA_Endpoint__c.field-meta.xml │ │ │ │ ├── reCAPTCHA_Library_Url__c.field-meta.xml │ │ │ │ ├── reCAPTCHA_Secret_Key__c.field-meta.xml │ │ │ │ ├── reCAPTCHA_Site_Key__c.field-meta.xml │ │ │ │ └── reCAPTCHA_v3_Score__c.field-meta.xml │ │ └── Summit_Events__c │ │ │ ├── Summit_Events__c.object-meta.xml │ │ │ ├── compactLayouts │ │ │ └── Event_Highlights.compactLayout-meta.xml │ │ │ ├── fields │ │ │ ├── Academic_Program_List_Selected__c.field-meta.xml │ │ │ ├── Academic_Program_List__c.field-meta.xml │ │ │ ├── Academic_Program_Selected__c.field-meta.xml │ │ │ ├── Accessibility_Detail_Label__c.field-meta.xml │ │ │ ├── Accessibility_Label__c.field-meta.xml │ │ │ ├── Account__c.field-meta.xml │ │ │ ├── Add_Info_Question_Pick_List_1__c.field-meta.xml │ │ │ ├── Add_Info_Question_Pick_List_2__c.field-meta.xml │ │ │ ├── Add_Info_Question_Pick_List_3__c.field-meta.xml │ │ │ ├── Add_Info_Question_Pick_List_4__c.field-meta.xml │ │ │ ├── Add_Info_Question_Pick_List_5__c.field-meta.xml │ │ │ ├── Add_Info_Question_Pick_List_Long_1__c.field-meta.xml │ │ │ ├── Add_Info_Question_Pick_List_Long_2__c.field-meta.xml │ │ │ ├── Add_Info_Question_Pick_List_Long_3__c.field-meta.xml │ │ │ ├── Add_Info_Question_Pick_List_Long_4__c.field-meta.xml │ │ │ ├── Add_Info_Question_Pick_List_Long_5__c.field-meta.xml │ │ │ ├── Add_Info_Question_Text_1__c.field-meta.xml │ │ │ ├── Add_Info_Question_Text_2__c.field-meta.xml │ │ │ ├── Add_Info_Question_Text_3__c.field-meta.xml │ │ │ ├── Add_Info_Question_Text_4__c.field-meta.xml │ │ │ ├── Add_Info_Question_Text_5__c.field-meta.xml │ │ │ ├── Add_Info_Question_Type_1__c.field-meta.xml │ │ │ ├── Add_Info_Question_Type_2__c.field-meta.xml │ │ │ ├── Add_Info_Question_Type_3__c.field-meta.xml │ │ │ ├── Add_Info_Question_Type_4__c.field-meta.xml │ │ │ ├── Add_Info_Question_Type_5__c.field-meta.xml │ │ │ ├── Allow_Other_Attendees__c.field-meta.xml │ │ │ ├── Alternate_Registration_URL__c.field-meta.xml │ │ │ ├── Applicant_Type_Label__c.field-meta.xml │ │ │ ├── Ask_Accessibility_Needs__c.field-meta.xml │ │ │ ├── Ask_Applicant_Type__c.field-meta.xml │ │ │ ├── Ask_Company_Organization__c.field-meta.xml │ │ │ ├── Ask_Date_Of_Birth__c.field-meta.xml │ │ │ ├── Ask_Dietary_Restrictions__c.field-meta.xml │ │ │ ├── Ask_Gender__c.field-meta.xml │ │ │ ├── Ask_If_Parent__c.field-meta.xml │ │ │ ├── Ask_Last_Name_As_Student__c.field-meta.xml │ │ │ ├── Ask_Mailing_Address__c.field-meta.xml │ │ │ ├── Ask_Phone__c.field-meta.xml │ │ │ ├── Ask_Preferred_Class_Year__c.field-meta.xml │ │ │ ├── Ask_Preferred_First_Name__c.field-meta.xml │ │ │ ├── Ask_Pronoun__c.field-meta.xml │ │ │ ├── Ask_Registrant_Program_Of_Interest__c.field-meta.xml │ │ │ ├── Ask_Relationship_To_Institution__c.field-meta.xml │ │ │ ├── Ask_Third_Party_Registrant__c.field-meta.xml │ │ │ ├── Ask_Title__c.field-meta.xml │ │ │ ├── Audience__c.field-meta.xml │ │ │ ├── Building__c.field-meta.xml │ │ │ ├── Close_Event_Days_Before__c.field-meta.xml │ │ │ ├── College_High_School_Ask__c.field-meta.xml │ │ │ ├── Community_Base_URL__c.field-meta.xml │ │ │ ├── Company_Organization_Label__c.field-meta.xml │ │ │ ├── Contact_Creation_Duplicate_Rule__c.field-meta.xml │ │ │ ├── Contact_Creation__c.field-meta.xml │ │ │ ├── Contact_Matching_Multiple_Match_Behavior__c.field-meta.xml │ │ │ ├── Contact_Matching_No_Match_Behavior__c.field-meta.xml │ │ │ ├── Contact_Matching_Rule_Description__c.field-meta.xml │ │ │ ├── Contact_Matching_Rules__c.field-meta.xml │ │ │ ├── Custom_Metadata_Contact_Matching_Method__c.field-meta.xml │ │ │ ├── Custom_Metadata_Lead_Matching_Method__c.field-meta.xml │ │ │ ├── Date_Of_Birth_Label__c.field-meta.xml │ │ │ ├── Dietary_Restrictions_Label__c.field-meta.xml │ │ │ ├── Display_Guest_Registration__c.field-meta.xml │ │ │ ├── Display_Optional_Donation__c.field-meta.xml │ │ │ ├── Do_not_show_receive_text_question__c.field-meta.xml │ │ │ ├── Donation_Allocation_1__c.field-meta.xml │ │ │ ├── Donation_Allocation_2__c.field-meta.xml │ │ │ ├── Donation_Allocation_3__c.field-meta.xml │ │ │ ├── Donation_Allocation_4__c.field-meta.xml │ │ │ ├── Donation_Allocation_5__c.field-meta.xml │ │ │ ├── Donation_Description__c.field-meta.xml │ │ │ ├── Donation_Suggested_Amount_List__c.field-meta.xml │ │ │ ├── Donation_Title__c.field-meta.xml │ │ │ ├── Email_Label__c.field-meta.xml │ │ │ ├── End_Date__c.field-meta.xml │ │ │ ├── Event_Additional_Question_Title__c.field-meta.xml │ │ │ ├── Event_Additional_Questions_Description__c.field-meta.xml │ │ │ ├── Event_Appointment_Chosen_Label__c.field-meta.xml │ │ │ ├── Event_Appointment_Description__c.field-meta.xml │ │ │ ├── Event_Appointment_Next_Instructions__c.field-meta.xml │ │ │ ├── Event_Appointment_Submit_List_Label__c.field-meta.xml │ │ │ ├── Event_Appointment_Title__c.field-meta.xml │ │ │ ├── Event_Appointment_Unchosen_Label__c.field-meta.xml │ │ │ ├── Event_Cancel_Review_Description__c.field-meta.xml │ │ │ ├── Event_Cancel_Review_Title__c.field-meta.xml │ │ │ ├── Event_Cancelled_Notification_Text__c.field-meta.xml │ │ │ ├── Event_Confirmation_Description__c.field-meta.xml │ │ │ ├── Event_Confirmation_Title__c.field-meta.xml │ │ │ ├── Event_Fee_Additional_Allocation__c.field-meta.xml │ │ │ ├── Event_Fee_Additional__c.field-meta.xml │ │ │ ├── Event_Fee_Allocation__c.field-meta.xml │ │ │ ├── Event_Fee_Label__c.field-meta.xml │ │ │ ├── Event_Fee_Submit_List_Label__c.field-meta.xml │ │ │ ├── Event_Fee_Total_Label__c.field-meta.xml │ │ │ ├── Event_Fee__c.field-meta.xml │ │ │ ├── Event_Fees_Received_Label__c.field-meta.xml │ │ │ ├── Event_Footer__c.field-meta.xml │ │ │ ├── Event_Full_Text__c.field-meta.xml │ │ │ ├── Event_Guest_Submit_List_Label__c.field-meta.xml │ │ │ ├── Event_Home_Link_Title__c.field-meta.xml │ │ │ ├── Event_Home_Link_URL__c.field-meta.xml │ │ │ ├── Event_Instance_Feed_URL__c.field-meta.xml │ │ │ ├── Event_Name__c.field-meta.xml │ │ │ ├── Event_Payment_Due_Description__c.field-meta.xml │ │ │ ├── Event_Payment_Due_Heading_Label__c.field-meta.xml │ │ │ ├── Event_Payment_Received_Description__c.field-meta.xml │ │ │ ├── Event_Payment_Received_Heading_Label__c.field-meta.xml │ │ │ ├── Event_Short_Listing_Description__c.field-meta.xml │ │ │ ├── Event_Sponsor__c.field-meta.xml │ │ │ ├── Event_Status__c.field-meta.xml │ │ │ ├── Event_Submit_Description__c.field-meta.xml │ │ │ ├── Event_Submit_Title__c.field-meta.xml │ │ │ ├── Event_Type__c.field-meta.xml │ │ │ ├── Event_description__c.field-meta.xml │ │ │ ├── Feed_Registration_Button_Text__c.field-meta.xml │ │ │ ├── Filter_Category__c.field-meta.xml │ │ │ ├── Filter_Where_To_Display__c.field-meta.xml │ │ │ ├── First_Name_Label__c.field-meta.xml │ │ │ ├── Gender_Label__c.field-meta.xml │ │ │ ├── Guest_Max_Amount__c.field-meta.xml │ │ │ ├── Guest_Registration_Add_Button_Label__c.field-meta.xml │ │ │ ├── Guest_Registration_Description__c.field-meta.xml │ │ │ ├── Guest_Registration_Title__c.field-meta.xml │ │ │ ├── Guest_Table_Size__c.field-meta.xml │ │ │ ├── Guest_Tables_Available__c.field-meta.xml │ │ │ ├── Guest_Unsaved_Cancel_Label__c.field-meta.xml │ │ │ ├── Guest_Unsaved_Continue_Label__c.field-meta.xml │ │ │ ├── Guest_Unsaved_Modal_Text__c.field-meta.xml │ │ │ ├── Hand_Raise_Action__c.field-meta.xml │ │ │ ├── Include_Time_frame_List__c.field-meta.xml │ │ │ ├── Itinerary_Display_Options__c.field-meta.xml │ │ │ ├── Itinerary_Item_1__c.field-meta.xml │ │ │ ├── Itinerary_Item_2__c.field-meta.xml │ │ │ ├── Itinerary_Item_3__c.field-meta.xml │ │ │ ├── Itinerary_Item_4__c.field-meta.xml │ │ │ ├── Itinerary_Item_5__c.field-meta.xml │ │ │ ├── Itinerary_Label_1__c.field-meta.xml │ │ │ ├── Itinerary_Label_2__c.field-meta.xml │ │ │ ├── Itinerary_Label_3__c.field-meta.xml │ │ │ ├── Itinerary_Label_4__c.field-meta.xml │ │ │ ├── Itinerary_Label_5__c.field-meta.xml │ │ │ ├── Itinerary_Table_Head_Or_Title_2__c.field-meta.xml │ │ │ ├── Itinerary_Table_Head_Or_Title_3__c.field-meta.xml │ │ │ ├── Itinerary_Table_Head_Or_Title_4__c.field-meta.xml │ │ │ ├── Itinerary_Table_Head_Or_Title_5__c.field-meta.xml │ │ │ ├── Keep_Registration_Open_During_Event__c.field-meta.xml │ │ │ ├── Last_Name_As_Student_Label__c.field-meta.xml │ │ │ ├── Last_Name_Label__c.field-meta.xml │ │ │ ├── Lead_Creation_Duplicate_Rule__c.field-meta.xml │ │ │ ├── Lead_Matching_Multiple_Match_Behavior__c.field-meta.xml │ │ │ ├── Lead_Matching_No_Match_Behavior__c.field-meta.xml │ │ │ ├── Lead_Matching_Rule_Description__c.field-meta.xml │ │ │ ├── Lead_matching_rules__c.field-meta.xml │ │ │ ├── Location_Address__c.field-meta.xml │ │ │ ├── Location_Map_Link__c.field-meta.xml │ │ │ ├── Location_Title__c.field-meta.xml │ │ │ ├── Location_Type__c.field-meta.xml │ │ │ ├── Mailing_Address_Label__c.field-meta.xml │ │ │ ├── Max_Other_Attendees__c.field-meta.xml │ │ │ ├── No_Guest_Registrations_Added_Message__c.field-meta.xml │ │ │ ├── Payment_Button_Label__c.field-meta.xml │ │ │ ├── Payment_Gateway__c.field-meta.xml │ │ │ ├── Phone_Label__c.field-meta.xml │ │ │ ├── Phone_Type_Label__c.field-meta.xml │ │ │ ├── Preferred_Class_Year_Label__c.field-meta.xml │ │ │ ├── Preferred_First_Name_Label__c.field-meta.xml │ │ │ ├── Private_Event__c.field-meta.xml │ │ │ ├── Program_Filter_2__c.field-meta.xml │ │ │ ├── Program_Filter_3__c.field-meta.xml │ │ │ ├── Program_Filter__c.field-meta.xml │ │ │ ├── Pronouns_Label__c.field-meta.xml │ │ │ ├── Registrant_Receive_Texts_Label__c.field-meta.xml │ │ │ ├── Registrant_Relationship_Label__c.field-meta.xml │ │ │ ├── Registration_Email_Restriction__c.field-meta.xml │ │ │ ├── Relationship_To_Institution_Label__c.field-meta.xml │ │ │ ├── Start_Date__c.field-meta.xml │ │ │ ├── Template__c.field-meta.xml │ │ │ ├── Third_Party_Registrant_Label__c.field-meta.xml │ │ │ ├── Title_Label__c.field-meta.xml │ │ │ ├── Tracking_Cancel_Registration__c.field-meta.xml │ │ │ ├── Tracking_Confirmation_Registration__c.field-meta.xml │ │ │ ├── Tracking_Event_Registration__c.field-meta.xml │ │ │ ├── Tracking_Options_Registration__c.field-meta.xml │ │ │ ├── Tracking_Submit_Registration__c.field-meta.xml │ │ │ ├── reCAPTCHA__c.field-meta.xml │ │ │ └── reCAPTCHA_v3_Score_Fail_Text__c.field-meta.xml │ │ │ ├── listViews │ │ │ ├── All.listView-meta.xml │ │ │ └── All_Events.listView-meta.xml │ │ │ ├── validationRules │ │ │ ├── Contact_Matching_Multiple_Match_Required.validationRule-meta.xml │ │ │ ├── Custom_Matching_Rule_Required_Fields.validationRule-meta.xml │ │ │ ├── Lead_Matching_Multiple_Match_Required.validationRule-meta.xml │ │ │ ├── Lead_Matching_Rule_Required_Fields.validationRule-meta.xml │ │ │ └── Must_Skip_Contact_Create_to_match_Lead.validationRule-meta.xml │ │ │ └── webLinks │ │ │ └── Preview_Event_Webform.webLink-meta.xml │ │ ├── pages │ │ ├── CastorTemplate2017.page │ │ ├── CastorTemplate2017.page-meta.xml │ │ ├── GeneralSLDS.page │ │ ├── GeneralSLDS.page-meta.xml │ │ ├── OPUSTemplate2018.page │ │ ├── OPUSTemplate2018.page-meta.xml │ │ ├── SummitEvents.page │ │ ├── SummitEvents.page-meta.xml │ │ ├── SummitEventsAddToCalendar.page │ │ ├── SummitEventsAddToCalendar.page-meta.xml │ │ ├── SummitEventsAdditionalQuestions.page │ │ ├── SummitEventsAdditionalQuestions.page-meta.xml │ │ ├── SummitEventsCancelReview.page │ │ ├── SummitEventsCancelReview.page-meta.xml │ │ ├── SummitEventsConfirmation.page │ │ ├── SummitEventsConfirmation.page-meta.xml │ │ ├── SummitEventsDonation.page │ │ ├── SummitEventsDonation.page-meta.xml │ │ ├── SummitEventsGeneratedItineraries.page │ │ ├── SummitEventsGeneratedItineraries.page-meta.xml │ │ ├── SummitEventsHostAssignment.page │ │ ├── SummitEventsHostAssignment.page-meta.xml │ │ ├── SummitEventsLetterheadLookup.page │ │ ├── SummitEventsLetterheadLookup.page-meta.xml │ │ ├── SummitEventsParkingPass.page │ │ ├── SummitEventsParkingPass.page-meta.xml │ │ ├── SummitEventsPrintItineraries.page │ │ ├── SummitEventsPrintItineraries.page-meta.xml │ │ ├── SummitEventsRegister.page │ │ ├── SummitEventsRegister.page-meta.xml │ │ ├── SummitEventsRegisterAppointments.page │ │ ├── SummitEventsRegisterAppointments.page-meta.xml │ │ ├── SummitEventsRegisterGuests.page │ │ ├── SummitEventsRegisterGuests.page-meta.xml │ │ ├── SummitEventsSubmit.page │ │ ├── SummitEventsSubmit.page-meta.xml │ │ ├── crowncollege2020.page │ │ └── crowncollege2020.page-meta.xml │ │ ├── permissionsets │ │ ├── Summit_Events_Admin.permissionset-meta.xml │ │ └── Summit_Events_Registrant.permissionset-meta.xml │ │ ├── reportTypes │ │ ├── Contacts_with_Summit_Events_Registrations.reportType-meta.xml │ │ ├── Summit_Event_Instances_w_Registrations.reportType-meta.xml │ │ ├── Summit_Events_Instances.reportType-meta.xml │ │ ├── Summit_Events_Registration_with_Appointments.reportType-meta.xml │ │ ├── Summit_Events_Registrations.reportType-meta.xml │ │ ├── Summit_Events_Registrations_w_Appointments.reportType-meta.xml │ │ └── Summit_Events_w_Instances.reportType-meta.xml │ │ ├── reports │ │ ├── SummitEventsReports.reportFolder-meta.xml │ │ └── SummitEventsReports │ │ │ ├── Appointment_Attendees_by_Staff_Member_ONM.report-meta.xml │ │ │ ├── Appointment_Registrants_by_Staff_Member_fJG.report-meta.xml │ │ │ ├── Appointments_by_Appointment_Category_M8U.report-meta.xml │ │ │ ├── Event_Attended_Registrations_7ZU.report-meta.xml │ │ │ ├── In_Progress_Appointments_VTJ.report-meta.xml │ │ │ ├── In_Progress_Registrations_dVb.report-meta.xml │ │ │ ├── New_Summit_Events_Registrations_Report_BeP.report-meta.xml │ │ │ ├── Registrations_Next_30_Days_Yzh.report-meta.xml │ │ │ ├── Registrations_Next_7_Days_GgD.report-meta.xml │ │ │ ├── Started_Registrations_RA0.report-meta.xml │ │ │ ├── Todays_Event_Registrations_AJD.report-meta.xml │ │ │ └── Tomorrows_Appointments_RjR.report-meta.xml │ │ ├── staticresources │ │ ├── CastorScripts2017.js │ │ ├── CastorScripts2017.resource │ │ ├── CastorScripts2017.resource-meta.xml │ │ ├── CastorStyles2017.css │ │ ├── CastorStyles2017.resource │ │ ├── CastorStyles2017.resource-meta.xml │ │ ├── OPUSScripts2018.js │ │ ├── OPUSScripts2018.resource │ │ ├── OPUSScripts2018.resource-meta.xml │ │ ├── SummitEventsAssets.resource-meta.xml │ │ ├── SummitEventsAssets │ │ │ ├── css │ │ │ │ ├── admissOvernight.css │ │ │ │ ├── calendar.css │ │ │ │ └── main.css │ │ │ ├── fullcalendar │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ └── index.global.min.js │ │ │ ├── img │ │ │ │ ├── UGParkingPass.gif │ │ │ │ ├── loading-shield.gif │ │ │ │ └── loading-summit_events.gif │ │ │ └── js │ │ │ │ ├── additionalQuestions.js │ │ │ │ ├── calendar.js │ │ │ │ ├── donation.js │ │ │ │ ├── guestRegistration.js │ │ │ │ ├── loading.js │ │ │ │ ├── moment.min.js │ │ │ │ ├── options.js │ │ │ │ ├── register.js │ │ │ │ ├── sldsHelper.js │ │ │ │ └── submit.js │ │ ├── UGParkingPass.resource │ │ ├── UGParkingPass.resource-meta.xml │ │ └── UGParkingPass.txt │ │ ├── tabs │ │ ├── Summit_Events_Appointment_Type__c.tab-meta.xml │ │ ├── Summit_Events_Appointments__c.tab-meta.xml │ │ ├── Summit_Events_Email__c.tab-meta.xml │ │ ├── Summit_Events_Host__c.tab-meta.xml │ │ ├── Summit_Events_Instance__c.tab-meta.xml │ │ ├── Summit_Events_Question__c.tab-meta.xml │ │ ├── Summit_Events_Registration__c.tab-meta.xml │ │ └── Summit_Events__c.tab-meta.xml │ │ └── triggers │ │ ├── SummitEventsAppointmentTrigger.trigger │ │ ├── SummitEventsAppointmentTrigger.trigger-meta.xml │ │ ├── SummitEventsLeadTrigger.trigger │ │ ├── SummitEventsLeadTrigger.trigger-meta.xml │ │ ├── SummitEventsRegistrationTrigger.trigger │ │ └── SummitEventsRegistrationTrigger.trigger-meta.xml └── test │ └── default │ └── classes │ ├── SummitEventsAddToCalendar_TEST.cls │ ├── SummitEventsAddToCalendar_TEST.cls-meta.xml │ ├── SummitEventsAdditionalQuestions_TEST.cls │ ├── SummitEventsAdditionalQuestions_TEST.cls-meta.xml │ ├── SummitEventsAfterLeadConversion_TEST.cls │ ├── SummitEventsAfterLeadConversion_TEST.cls-meta.xml │ ├── SummitEventsAppointmentTrigger_TEST.cls │ ├── SummitEventsAppointmentTrigger_TEST.cls-meta.xml │ ├── SummitEventsCancelReview_TEST.cls │ ├── SummitEventsCancelReview_TEST.cls-meta.xml │ ├── SummitEventsConfirmation_TEST.cls │ ├── SummitEventsConfirmation_TEST.cls-meta.xml │ ├── SummitEventsContactMatching_TEST.cls │ ├── SummitEventsContactMatching_TEST.cls-meta.xml │ ├── SummitEventsDonation_TEST.cls │ ├── SummitEventsDonation_TEST.cls-meta.xml │ ├── SummitEventsFeed_TEST.cls │ ├── SummitEventsFeed_TEST.cls-meta.xml │ ├── SummitEventsGeneratedItineraries_TEST.cls │ ├── SummitEventsGeneratedItineraries_TEST.cls-meta.xml │ ├── SummitEventsHostAssignment_TEST.cls │ ├── SummitEventsHostAssignment_TEST.cls-meta.xml │ ├── SummitEventsLetterheadLookup_TEST.cls │ ├── SummitEventsLetterheadLookup_TEST.cls-meta.xml │ ├── SummitEventsNamespace_TEST.cls │ ├── SummitEventsNamespace_TEST.cls-meta.xml │ ├── SummitEventsParkingPass_TEST.cls │ ├── SummitEventsParkingPass_TEST.cls-meta.xml │ ├── SummitEventsPrintItineraries_TEST.cls │ ├── SummitEventsPrintItineraries_TEST.cls-meta.xml │ ├── SummitEventsRegisterAppointment_TEST.cls │ ├── SummitEventsRegisterAppointment_TEST.cls-meta.xml │ ├── SummitEventsRegisterGuests_TEST.cls │ ├── SummitEventsRegisterGuests_TEST.cls-meta.xml │ ├── SummitEventsRegister_TEST.cls │ ├── SummitEventsRegister_TEST.cls-meta.xml │ ├── SummitEventsRegistration_TEST.cls │ ├── SummitEventsRegistration_TEST.cls-meta.xml │ ├── SummitEventsShared_TEST.cls │ ├── SummitEventsShared_TEST.cls-meta.xml │ ├── SummitEventsSubmit_TEST.cls │ ├── SummitEventsSubmit_TEST.cls-meta.xml │ ├── SummitEventsTestSharedDataFactory.cls │ ├── SummitEventsTestSharedDataFactory.cls-meta.xml │ ├── SummitEvents_TEST.cls │ ├── SummitEvents_TEST.cls-meta.xml │ ├── summitRecaptcha_TEST.cls │ └── summitRecaptcha_TEST.cls-meta.xml ├── images ├── 1.1 - New Event.png ├── 1.10 - Event Description section.png ├── 1.11 - Additional Questions (optional) section.png ├── 1.12 - Appointment Option Page section.png ├── 1.13 - Confirmation Page section.png ├── 1.14 - Cancel Review Page section.png ├── 1.15 - Analytic Tracking (Advanced users only) section.png ├── 1.16 - Related List Links.png ├── 1.17 - Submit Page section.png ├── 1.2 - Record type.png ├── 1.3 - Preview Event Webform.png ├── 1.4 - Calendar view.png ├── 1.5 - Information details section of Summit Events page.png ├── 1.7 Options section of Summit Events page.png ├── 1.8 - Audience and Location section.png ├── 1.9 - Programs related to event section.png ├── 3.10_Contact_Matching_Multipe_Metadata_Examples.png ├── 3.11_Contact_Matching_Duplicate_Rule_Selection.png ├── 3.12_Contact_Matching_Summit_Events_Picklist_Configuration.png ├── 3.13_Contact_Matching_Summit_Events_Picklist_Configuration.png ├── 3.14_Contact_Matching_Summit_Events_Picklist_Field_Dependency.png ├── 3.15_Contact_Matching_Summit_Events_Selections.png ├── 3.16_Contact_Matching_Options.png ├── 3.17_Contact_Matching_No_Match_Behavior.png ├── 3.18_Contact_Matching_Multiple_Match_Behavior.png ├── 3.19_Contact_Matching_Matching_Log_Example.png ├── 3.1_Contact_Matching_Options.png ├── 3.2_Contact_Matching_Duplicate_Rules.png ├── 3.3_Contact_Matching_Matching_Rule.png ├── 3.4_Contact_Matching_Configure_Matching_Rule.png ├── 3.5_Contact_Matching_Fuzzy_Logic.png ├── 3.6_Contact_Matching_Criteria_Example.png ├── 3.7_Contact_Matching_Custom_Metadata_Types.png ├── 3.8_Contact_Matching_Create_New_Custom_Mapping.png ├── 3.9_Contact_Matching _Custom_Metadata_Mapping_Example.png ├── Add to Calendar Field Location image.jpg ├── Contact Matching Rule hardcoded fields v2.png ├── Contact Matching only Setup on Summit Event record.png ├── Contact and Lead Matching Setup when using both on Summit Event record.png ├── CreateEventSummit-DonationRegView.PNG ├── CreateEventSummit-DonationSec.PNG ├── CreateEventSummit-EventFeesAllocationPNG.PNG ├── CreateEventSummit-EventFeesRegView.PNG ├── CreateEventSummit-EventFeesSection.PNG ├── Custom Settings 1.png ├── Custom Settings 2.png ├── Custom Settings 3.png ├── Duplicate Rule settings screenshot for Summit Events matching.png ├── Guest User Config 1.png ├── Guest User Config 2.png ├── Guest User Config 3.png ├── Lead Duplicate Rule settings screenshot for Summit Events matching.png ├── Lead Matching Custom Metadata Mappings.png ├── Lead Matching Rule hardcoded fields.png ├── Lead Matching only Setup on Summit Event record.png ├── Sharing Settings Config.png ├── Site Configuration.png ├── Site Label Reference.png ├── Site Setup.png ├── Site URL Capture.png ├── Summit Events App Badge fv.png ├── Summit Events Contact Matching Mappings Custom Metadata screenshot.png ├── Summit Events ERD.PNG ├── Summit Events Publish on website screenshot 6 - CORS.png ├── Summit Events page code section 1 - Lines 15-29.png ├── Summit Events page code section 2 - Lines 42-44.png ├── Summit Events page code section 3 - Lines 50-54.png ├── Summit Events page code section 4- Line 117 Feed URL replace.png ├── Summit Events publish on website screenshot 5.png └── images.md ├── metadeploy └── labels_en.json ├── orgs ├── beta.json ├── dev.json ├── dev_namespaced.json ├── feature.json └── release.json ├── robot └── SummitEventsApp │ └── tests │ └── create_contact.robot ├── sfdx-project.json └── unpackaged └── config ├── sharing ├── package.xml └── sharingRules │ ├── Account.sharingRules-meta.xml │ ├── Summit_Events_Fee_Allocation__c.sharingRules-meta.xml │ └── Summit_Events__c.sharingRules-meta.xml ├── site ├── package.xml └── sites │ └── Summit_Events.site └── summit__sharing ├── package.xml └── sharingRules ├── Account.sharingRules-meta.xml ├── summit__Summit_Events_Fee_Allocation__c.sharingRules-meta.xml └── summit__Summit_Events__c.sharingRules-meta.xml /.forceignore: -------------------------------------------------------------------------------- 1 | /.illuminatedCloud/ 2 | **/*.ts 3 | **/tsconfig*.json 4 | **/*.tsbuildinfo 5 | **/eslint.config.mjs -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | 2 | # Python 3 | *.py @SalesforceFoundation/release-engineering-reviewers 4 | 5 | # CumulusCI 6 | /cumulusci.yml @SalesforceFoundation/release-engineering-reviewers 7 | /tasks/ @SalesforceFoundation/release-engineering-reviewers 8 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.md: -------------------------------------------------------------------------------- 1 | --- 2 | name: Documentation 3 | about: Template to capture Documentation needs or Documentation to be added. 4 | title: "[DOCUMENTATION]" 5 | labels: documentation 6 | assignees: 7 | 8 | --- 9 | 10 | **Please share the area or functionality of the Documentation need/issue** 11 | 12 | **If appropriate, please articulate as best as possible where the documentation is insufficient or doesn't seem clear** 13 | 14 | **If appropriate, please provide documentation or adjustments** -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | # Critical Changes 4 | 5 | # Changes 6 | 7 | # Issues Closed 8 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Salesforce / SFDX / CCI 2 | .cci 3 | .sfdx 4 | .sf 5 | /src.orig 6 | /src 7 | 8 | # Python 9 | *.pyc 10 | __pycache__ 11 | 12 | # Robot Framework results 13 | robot/SummitEventsApp/results/ 14 | 15 | # Editors 16 | *.sublime-project 17 | *.sublime-workspace 18 | .vscode 19 | .idea 20 | .project 21 | .settings 22 | 23 | # Misc 24 | .DS_Store 25 | 26 | # Illuminated Cloud (IntelliJ IDEA) 27 | IlluminatedCloud 28 | .IlluminatedCloud 29 | out 30 | *.iml 31 | 32 | # CumulusCI 33 | /test_results.* 34 | 35 | # Added by Illuminated Cloud 36 | .localdev/ 37 | target/ 38 | node_modules/ 39 | /.illuminatedCloud/ 40 | **/tsconfig*.json 41 | **/*.tsbuildinfo -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | # How to Contribute 2 | 3 | We are really glad you are here! We maintain our developer documentation [in GitHub Pages](https://sfdo-community-sprints.github.io/summit-events-app-documentation/docs/development/getting-started/). 4 | -------------------------------------------------------------------------------- /docs/GIT-notes.md: -------------------------------------------------------------------------------- 1 | # Git - ***Notes*** 2 | 3 | ## Git commands I keep using 4 | 5 | Resetting my local repository to what is on the remote: 6 | 7 | ```git 8 | git fetch origin 9 | git reset --hard origin/master 10 | git clean -f 11 | ``` 12 | 13 | Connecting to remote? 14 | 15 | ```git 16 | git remote add [name] [URL] 17 | ``` 18 | 19 | 20 | Getting new .gitignore entries to work ***Make sure you have committed all other changes before doing this***: 21 | 22 | ```git 23 | git rm -rf --cached . 24 | git add . 25 | git commit -m "I just updated ignore with..." 26 | ``` 27 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-slate -------------------------------------------------------------------------------- /docs/files/USTEvent_DOCS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/docs/files/USTEvent_DOCS.zip -------------------------------------------------------------------------------- /docs/files/index: -------------------------------------------------------------------------------- 1 | Documentation files 2 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsAddToCalendarController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsAdditionalQuestionsCtlr.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsAfterLeadConversion.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsAppointmentTriggerHandler.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsCancelReviewController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsConfirmationController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsContactMatching.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsDonationController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsFeed.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsGeneratedItinerariesExt.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsHostAssignmentExtension.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsInfo.cls: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2020, Salesforce.org. All rights reserved. 2 | // Use of this source code is governed by a BSD 3-Clause. 3 | // License can be found found in the LICENSE file in this repository. 4 | // Created by Thaddaeus Dahlberg on 7/22/2023. 5 | 6 | public with sharing class SummitEventsInfo { 7 | public String audience { get; set; } 8 | public String instanceId { get; set; } 9 | public String eventId { get; set; } 10 | public String registrationId { get; set; } 11 | public String dt { get; set; } 12 | public String valid { get; set; } 13 | } -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsInfo.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsLetterheadLookupExtension.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsNamespace.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsParkingPassController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsPrintItinerariesExtension.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsRegisterAppointmentCtlr.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsRegisterController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsRegisterGuestsController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsRegistration.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsShared.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/SummitEventsSubmitController.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/classes/summitEventsRecaptcha.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/contentassets/SummitEventsLHHeader.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/force-app/main/default/contentassets/SummitEventsLHHeader.asset -------------------------------------------------------------------------------- /force-app/main/default/contentassets/summit_events_logo128x128.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/force-app/main/default/contentassets/summit_events_logo128x128.asset -------------------------------------------------------------------------------- /force-app/main/default/contentassets/summit_events_logo128x128.asset-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | en_US 5 | summit_events_logo128x128 6 | 7 | 8 | VIEWER 9 | 10 | 11 | 12 | 13 | 1 14 | summit_events_logo-128x128.png 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /force-app/main/default/dashboards/SummitEventsDashboards.dashboardFolder-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Summit Events Dashboards 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/documents/Letterheads.documentFolder-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | Letterheads 5 | ReadOnly 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/documents/Letterheads/SummitEventsLHHeader.document-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | false 4 | SummitEventsLHHeader 5 | true 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/documents/Letterheads/SummitEventsLHHeader.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/force-app/main/default/documents/Letterheads/SummitEventsLHHeader.jpg -------------------------------------------------------------------------------- /force-app/main/default/objects/Contact/fields/Created_with_Summit_Events__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Created_with_Summit_Events__c 4 | false 5 | false 6 | 7 | false 8 | Checkbox 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointment_Type__c/fields/Appointment_Category__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Appointment_Category__c 4 | false 5 | 6 | false 7 | false 8 | Picklist 9 | 10 | true 11 | Appointment_Category 12 | 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointment_Type__c/fields/Appointment_Fee__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Appointment_Fee__c 4 | Fee associated with this appointment. 5 | false 6 | Fee associated with this appointment. 7 | 8 | 8 9 | false 10 | 2 11 | false 12 | Currency 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointment_Type__c/fields/Auto_Add_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Auto_Add_Time__c 4 | Auto populate this appointment time when this appointment is added to a registration 5 | false 6 | Auto populate this appointment time when this appointment is added to a registration 7 | 8 | false 9 | false 10 | Time 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointment_Type__c/fields/Description__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Description__c 4 | Rich text description of event that can include links and formatting. 5 | false 6 | Rich text description of event that can include links and formatting. 7 | 8 | 32768 9 | false 10 | Html 11 | 10 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointment_Type__c/fields/Do_Not_Show_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Do_Not_Show_Time__c 4 | false 5 | Do not show this appointment's time on itinerary generation. 6 | false 7 | Do not show this appointment's time on itinerary generation. 8 | 9 | false 10 | Checkbox 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointment_Type__c/fields/Title__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Title__c 4 | Title of appointment in 255 characters or less 5 | false 6 | Title of appointment in 255 characters or less 7 | 8 | 255 9 | true 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointment_Type__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | NAME 5 | Title__c 6 | Appointment_Category__c 7 | Appointment_Type__c 8 | Everything 9 | 10 | en_US 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Appointment_Category__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Appointment_Category__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Picklist 10 | 11 | true 12 | Appointment_Category 13 | 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Appointment_Date_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Appointment_Date_Time__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | DateTime 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Appointment_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Appointment_Date__c 4 | DATEVALUE("Event_Registration_Date__c") 5 | Date of Appointment 6 | false 7 | Date of Appointment 8 | 9 | false 10 | false 11 | false 12 | Date 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Appointment_Detail__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Appointment_Detail__c 4 | Added detail about the appointment 5 | false 6 | Added detail about the appointment 7 | 8 | 5000 9 | false 10 | false 11 | LongTextArea 12 | 3 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Appointment_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Appointment_Time__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Time 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Appointment_Title__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Appointment_Title__c 4 | Display title of appointment 5 | false 6 | Display title of appointment 7 | 8 | 255 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Building__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Building__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Picklist 10 | 11 | true 12 | Buildings 13 | 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Class_Title__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Class_Title__c 4 | Classroom Title 5 | false 6 | Name of class to show on student's itinerary 7 | 8 | 50 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Contact__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Contact__c 4 | false 5 | Event_Registration__r.Contact__r.FirstName &" "& Event_Registration__r.Contact__r.LastName 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Event_Reg_ID__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Reg_ID__c 4 | false 5 | Event_Registration__r.Event_Instance__r.Id 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Faculty_Staff_Member__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Faculty_Staff_Member__c 4 | false 5 | 6 | 50 7 | false 8 | false 9 | false 10 | Text 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/fields/Room__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Room__c 4 | false 5 | Room Location 6 | 7 | 30 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | NAME 5 | Appointment_Title__c 6 | Appointment_Status__c 7 | Appointment_Time_Formatted__c 8 | Host_Name__c 9 | Everything 10 | 11 | en_US 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Appointments__c/listViews/All_Appointments.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All_Appointments 4 | NAME 5 | Appointment_Category__c 6 | Appointment_Date_Time__c 7 | Appointment_Status__c 8 | Contact__c 9 | Faculty_Staff_Member__c 10 | Everything 11 | 12 | en_US 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Contact_Matching_Mapping__mdt/Summit_Events_Contact_Matching_Mapping__mdt.object-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Summit Events Contact Matching Mappings 5 | Public 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Contact_Matching_Mapping__mdt/fields/Contact_Field_API_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Contact_Field_API_Name__c 4 | false 5 | SubscriberControlled 6 | 7 | 255 8 | true 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Contact_Matching_Mapping__mdt/fields/Source_Value__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Source_Value__c 4 | false 5 | SubscriberControlled 6 | 7 | 255 8 | true 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Contact_Matching_Mapping__mdt/validationRules/Fields_Types_must_have_Source_Objects.validationRule-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Fields_Types_must_have_Source_Objects 4 | true 5 | ISPICKVAL(Source_Type__c, 'Field') && 6 | ISPICKVAL(Source_Object__c, '') 7 | Source Object is required when Source Type equals "Field" 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Contact_Matching_Mapping__mdt/validationRules/Hardcoded_Types_cant_have_Source_Object.validationRule-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hardcoded_Types_cant_have_Source_Object 4 | true 5 | ISPICKVAL(Source_Type__c, 'Hardcoded') && 6 | NOT(ISPICKVAL(Source_Object__c, '')) 7 | Source Object must be blank when Source Type equals "Hardcoded" 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Email__c/fields/BCC_Email__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | BCC_Email__c 4 | Comma separated list of emails to blind carbon copy this email. 5 | false 6 | Comma separated list of emails to blind carbon copy this email. 7 | 8 | 1000 9 | false 10 | LongTextArea 11 | 3 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Email__c/fields/Email_Content__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Email_Content__c 4 | Main content of the email. Can include registration information. 5 | false 6 | Main content of the email. Can include registration information. 7 | 8 | 32768 9 | false 10 | Html 11 | 25 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Email__c/fields/Email_From__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Email_From__c 4 | false 5 | 6 | 255 7 | false 8 | false 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Email__c/fields/Email_Subject__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Email_Subject__c 4 | false 5 | 6 | 255 7 | false 8 | false 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Email__c/fields/Letterhead_HTML__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Letterhead_HTML__c 4 | The letterhead of the email in which the content will be placed 5 | false 6 | The letterhead of the email in which the content will be placed 7 | 8 | 32000 9 | false 10 | LongTextArea 11 | 25 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Email__c/fields/Letterhead_Id__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Letterhead_Id__c 4 | The ID of the selected letterhead from the org. 5 | false 6 | The ID of the selected letterhead from the org. 7 | 8 | 30 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Email__c/fields/Letterhead_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Letterhead_Name__c 4 | The name of the selected/assigned letterhead 5 | false 6 | The name of the selected/assigned letterhead 7 | 8 | 255 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Email__c/fields/Org_Email_Id__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Org_Email_Id__c 4 | Id of the organizational email that allows for external sending out of Salesforce 5 | false 6 | Id of the organizational email that allows for external sending out of Salesforce 7 | 8 | 30 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Email__c/fields/Org_Email__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Org_Email__c 4 | Organizational email to send from 5 | false 6 | Organizational email to send from 7 | 8 | false 9 | false 10 | Email 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Email__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | NAME 5 | Event__c 6 | Action_Status__c 7 | Everything 8 | 9 | en_US 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Fee_Allocation__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Fee__c/fields/Description__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Description__c 4 | Description of the fee incurred. 5 | false 6 | Description of the fee incurred. 7 | 8 | 255 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Fee__c/fields/Event_Fee__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Fee__c 4 | The amount of fee incurred. 5 | false 6 | Summit Events Fee _ Salesforce.html 7 | 8 | 8 9 | false 10 | 2 11 | false 12 | false 13 | Currency 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Fee__c/fields/Summit_Events__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Summit_Events__c 4 | SetNull 5 | false 6 | 7 | Summit_Events__c 8 | Summit Events Fees 9 | Summit_Events_Fees 10 | false 11 | false 12 | false 13 | Lookup 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Fee__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Host__c/fields/Additional_Comments__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Additional_Comments__c 4 | Additional comments about the host that will appear in any generated itinerary. 5 | false 6 | Additional comments about the host that will appear in any generated itinerary. 7 | 8 | false 9 | false 10 | false 11 | TextArea 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Host__c/fields/Course_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Course_Name__c 4 | Name of the hosting course (if it is a course). 5 | false 6 | Name of the hosting course (if it is a course). 7 | 8 | 255 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Host__c/fields/Department__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Department__c 4 | The department a faculty or staff host works. 5 | false 6 | The department a faculty or staff host works. 7 | 8 | 255 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Host__c/fields/First_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | First_Name__c 4 | First name of the host. 5 | false 6 | First name of the host. 7 | 8 | 40 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Host__c/fields/Last_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Last_Name__c 4 | First name of the host 5 | false 6 | First name of the host 7 | 8 | 80 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Host__c/fields/Location__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Location__c 4 | Room and building number, address, where hosting will be happening. 5 | false 6 | Room and building number, address, where hosting will be happening. 7 | 8 | 255 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Host__c/fields/Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Time__c 4 | The time of the hosting 5 | false 6 | The time of the hosting 7 | 8 | false 9 | false 10 | false 11 | Time 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Host__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | NAME 5 | Last_Name__c 6 | First_Name__c 7 | Max_Available__c 8 | Everything 9 | 10 | en_US 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/compactLayouts/Instance_Highlight_Panel.compactLayout-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Instance_Highlight_Panel 4 | Instance_Title__c 5 | Event_Name__c 6 | Active_Status__c 7 | Current_Available_Capacity__c 8 | Confirmed_Attendees__c 9 | Registration_Link__c 10 | Admin_Open_Registration_Link__c 11 | 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Active_Status__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Active_Status__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Picklist 10 | 11 | true 12 | Active_Status 13 | 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Audience__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Audience__c 4 | Location Type value from Summit Events record 5 | false 6 | TEXT(Event__r.Location_Type__c) 7 | Location Type value from Summit Events record 8 | 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Capacity__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Capacity__c 4 | Capacity of the Event Instance 5 | false 6 | Capacity of this Event Instance 7 | 8 | 5 9 | false 10 | 0 11 | false 12 | false 13 | Number 14 | false 15 | 16 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Event_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Name__c 4 | false 5 | Event__r.Event_Name__c 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Event_Type__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Type__c 4 | Event Type value from the Summit Events object 5 | false 6 | TEXT(Event__r.Event_Type__c) 7 | Event Type value from the Summit Events object 8 | 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Instance_End_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Instance_End_Date__c 4 | The date this event will end. 5 | false 6 | The date this event will end. 7 | 8 | false 9 | false 10 | false 11 | Date 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Instance_End_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Instance_End_Time__c 4 | The time this event will end. 5 | false 6 | The time this event will end. 7 | 8 | false 9 | false 10 | false 11 | Time 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Instance_Start_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Instance_Start_Date__c 4 | The date the this event will start. 5 | false 6 | The date the this event will start. 7 | 8 | false 9 | false 10 | false 11 | Date 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Instance_Start_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Instance_Start_Time__c 4 | The time this event starts. 5 | false 6 | The time this event starts. 7 | 8 | false 9 | false 10 | false 11 | Time 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Instance_Title__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Instance_Title__c 4 | The title of the session under the event. 5 | false 6 | The title of the session under the event. 7 | 8 | 255 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Open_Registration__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Open_Registration__c 4 | Registration is open to users 5 | false 6 | IF( ISPICKVAL(Active_Status__c, "Active") && Registration_Close_Date__c >= Today() && Current_Available_Capacity__c > 0, TRUE, Null) 7 | 8 | false 9 | false 10 | Checkbox 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Private_Instance__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private_Instance__c 4 | false 5 | This instance will not appear on any RSS feeds for external display. 6 | false 7 | This instance will not appear on any RSS feeds for external display. 8 | 9 | false 10 | false 11 | Checkbox 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Registration_Close_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Registration_Close_Time__c 4 | false 5 | IF(Event__r.Keep_Registration_Open_During_Event__c, 6 | Instance_End_Time__c, 7 | Instance_Start_Time__c) 8 | 9 | false 10 | false 11 | false 12 | Time 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Virtual_Appointment_Link__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Virtual_Appointment_Link__c 4 | Utilized for a Unique Virtual Appointment Link 5 | false 6 | Input the URL of the virtual appointment location 7 | 8 | false 9 | false 10 | false 11 | Url 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/fields/Virtual_Meeting_Link__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Virtual_Meeting_Link__c 4 | Utilized for a Unique Virtual Meeting Link 5 | false 6 | Input the URL of the virtual appointment location 7 | 8 | false 9 | false 10 | false 11 | Url 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/listViews/All_Instances.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All_Instances 4 | NAME 5 | Instance_Title__c 6 | Event_Name__c 7 | Active_Status__c 8 | Count_of_Attendees__c 9 | Current_Available_Capacity__c 10 | Instance_Short_Description__c 11 | Event__c 12 | Everything 13 | 14 | en_US 15 | 16 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/listViews/All_Sessions.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All_Sessions 4 | NAME 5 | Instance_Title__c 6 | Event__c 7 | Event_Name__c 8 | Capacity__c 9 | Count_of_Attendees__c 10 | Everything 11 | 12 | en_US 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/listViews/All_Visits_Today.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All_Visits_Today 4 | NAME 5 | Event__c 6 | Event_Name__c 7 | Count_of_Attendees__c 8 | Capacity__c 9 | Active_Status__c 10 | Everything 11 | 12 | en_US 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Instance__c/validationRules/start_date_before_end_date.validationRule-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | start_date_before_end_date 4 | true 5 | The instance start date must not be greater than the instance end date 6 | Instance_Start_Date__c > Instance_End_Date__c 7 | Instance_End_Date__c 8 | The Instance End Date must be same as or later than the Instance Start Date 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Lead_Matching_Mapping__mdt/Summit_Events_Lead_Matching_Mapping__mdt.object-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Summit Events Lead Matching Mappings 5 | Public 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Lead_Matching_Mapping__mdt/fields/Lead_Field_API_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lead_Field_API_Name__c 4 | false 5 | DeveloperControlled 6 | 7 | 255 8 | true 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Lead_Matching_Mapping__mdt/fields/Matching_Only__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Matching_Only__c 4 | false 5 | false 6 | DeveloperControlled 7 | 8 | Checkbox 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Lead_Matching_Mapping__mdt/fields/Source_Value__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Source_Value__c 4 | false 5 | DeveloperControlled 6 | 7 | 255 8 | true 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Account_Number__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Account_Number__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Address_1__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Address_1__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Address_2__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Address_2__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Card_Type__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Card_Type__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/City__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | City__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Country__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Country__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Email_Address__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Email_Address__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/GatewayApprovalCode__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | GatewayApprovalCode__c 4 | false 5 | 6 | 200 7 | false 8 | false 9 | false 10 | Text 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Gateway_Session_Identifier__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Gateway_Session_Identifier__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Name_On_Account__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Name_On_Account__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Payment_Amount__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Payment_Amount__c 4 | false 5 | 6 | 7 7 | false 8 | 2 9 | false 10 | false 11 | Currency 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Payment_Defer_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Payment_Defer_Date__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | DateTime 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Payment_Email_Address__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Payment_Email_Address__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Email 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Payment_Forfeit_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Payment_Forfeit_Date__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | DateTime 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Payment_Method_Expiration_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Payment_Method_Expiration_Date__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Payment_Method__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Payment_Method__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Payment_Received_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Payment_Received_Date__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | DateTime 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Payment_Refund_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Payment_Refund_Date__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | DateTime 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Payment_Returned_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Payment_Returned_Date__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | DateTime 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Phone__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Phone__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Phone 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/State__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | State__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/TouchnetReceiptNumber__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | TouchnetReceiptNumber__c 4 | false 5 | 6 | 200 7 | false 8 | false 9 | false 10 | Text 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/fields/Zip__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Zip__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Payment__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Question__c/fields/Lookup_Order_By__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lookup_Order_By__c 4 | ORDER BY query segment for which to order lookup query results. 5 | false 6 | ORDER BY query segment for which to order lookup query results. 7 | 8 | 255 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Question__c/fields/Picklist_Values__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Picklist_Values__c 4 | This field enables user to create Picklist values for a Picklist question, return/line separated. 5 | false 6 | This field enables user to create Picklist values for a Picklist question, return/line separated. 7 | 8 | false 9 | false 10 | TextArea 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Question__c/fields/Question_Label__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Question_Label__c 4 | This field displays the Question Label to the registrant. 5 | false 6 | This field displays the Question Label to the registrant. 7 | 8 | 255 9 | true 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Question__c/fields/Required__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Required__c 4 | false 5 | This field determines if a question is Required on the Registration form. 6 | false 7 | This field determines if a question is Required on the Registration form. 8 | 9 | false 10 | Checkbox 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Question__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Everything 5 | 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Question__c/validationRules/All_Picklist_fields_require_values.validationRule-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All_Picklist_fields_require_values 4 | true 5 | ISPICKVAL(Question_Field_Type__c, 'Picklist') && 6 | 7 | ISPICKVAL(Existing_Picklist_Values__c, "") = ISBLANK(Picklist_Values__c + Picklist_Values_Long__c) 8 | When Question Type = Picklist, one of the Picklist Type fields must have a value for record to be saved. 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/compactLayouts/Registration_Highlights.compactLayout-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Registration_Highlights 4 | Preferred_First_Name_Formatted__c 5 | Contact__c 6 | Display_Attendance_Publicly__c 7 | Event_Instance_Title__c 8 | New_Contact_Created__c 9 | Registrant_Mobile_Phone__c 10 | Registrant_Phone__c 11 | Registrant_Email__c 12 | 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Accessibility_Need_Detail__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Accessibility_Need_Detail__c 4 | The accessibility needs that the registrant has identified as needing. 5 | The accessibility needs that the registrant has identified as needing. 6 | 7 | false 8 | false 9 | false 10 | TextArea 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Answer_1_Numeric__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Answer_1_Numeric__c 4 | false 5 | 6 | 18 7 | false 8 | 0 9 | false 10 | false 11 | Number 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Answer_2_Numeric__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Answer_2_Numeric__c 4 | false 5 | 6 | 18 7 | false 8 | 0 9 | false 10 | false 11 | Number 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Answer_3_Numeric__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Answer_3_Numeric__c 4 | false 5 | 6 | 18 7 | false 8 | 0 9 | false 10 | false 11 | Number 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Answer_4_Numeric__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Answer_4_Numeric__c 4 | false 5 | 6 | 18 7 | false 8 | 0 9 | false 10 | false 11 | Number 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Answer_5_Numeric__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Answer_5_Numeric__c 4 | false 5 | 6 | 18 7 | false 8 | 0 9 | false 10 | false 11 | Number 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Appointment_Table__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Appointment_Table__c 4 | false 5 | 6 | 131072 7 | false 8 | false 9 | LongTextArea 10 | 3 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Campus_Tour_Location__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Campus_Tour_Location__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Picklist 10 | 11 | true 12 | Buildings 13 | 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Campus_Tour_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Campus_Tour_Time__c 4 | false 5 | 6 | 10 7 | false 8 | false 9 | false 10 | Text 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Contact_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Contact_Name__c 4 | false 5 | Contact__r.FirstName & " " & Contact__r.LastName 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Contact__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Contact__c 4 | SetNull 5 | false 6 | 7 | Contact 8 | Summit Events Registrations 9 | Summit_Events_Registrations 10 | false 11 | false 12 | false 13 | Lookup 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Date_All_Appointments_Confirmed_del__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Date_All_Appointments_Confirmed_del__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Date 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Dietary_Ristrictions__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Dietary_Ristrictions__c 4 | Dietary restrictions that the registrant has identified needing. 5 | Dietary restrictions that the registrant has identified needing. 6 | 7 | false 8 | false 9 | false 10 | TextArea 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Display_Attendance_Publicly__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Display_Attendance_Publicly__c 4 | false 5 | false 6 | 7 | false 8 | false 9 | Checkbox 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Instance_Date_Time_Formatted__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Instance_Date_Time_Formatted__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | TextArea 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Instance_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Instance_Date__c 4 | false 5 | Event_Instance__r.Instance_Start_Date__c 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Date 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Instance_End_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Instance_End_Date__c 4 | false 5 | Event_Instance__r.Instance_End_Date__c 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Date 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Instance_End_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Instance_End_Time__c 4 | false 5 | Event_Instance__r.Instance_End_Time__c 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Time 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Instance_Start_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Instance_Start_Date__c 4 | false 5 | Event_Instance__r.Instance_Start_Date__c 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Date 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Instance_Start_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Instance_Start_Time__c 4 | false 5 | Event_Instance__r.Instance_Start_Time__c 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Time 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Instance_Time_Zone__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Instance_Time_Zone__c 4 | false 5 | TEXT(Event_Instance__r.Instance_Time_Zone__c) 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Instance_Title__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Instance_Title__c 4 | false 5 | Event_Instance__r.Instance_Title__c 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Name__c 4 | false 5 | Event_Instance__r.Event_Name__c 6 | BlankAsZero 7 | 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Registration_Requested_Date__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Registration_Requested_Date__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Date 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Type__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Type__c 4 | Event Type value from Summit Events record 5 | false 6 | TEXT(Event__r.Event_Type__c) 7 | Event Type value from Summit Events record 8 | 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event_Website__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Website__c 4 | Website which registration occurs. 5 | false 6 | Website which registration occurs. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Event__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event__c 4 | SetNull 5 | false 6 | 7 | Summit_Events__c 8 | Summit Events Registrations 9 | UG_Event_Registrations 10 | false 11 | false 12 | false 13 | Lookup 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Guest_JSON__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Guest_JSON__c 4 | Hidden field for storing intermediary guest registration information. 5 | false 6 | Hidden field for storing intermediary guest registration information. 7 | 8 | 32768 9 | false 10 | false 11 | LongTextArea 12 | 3 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Last_Name_as_Student__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Last_Name_as_Student__c 4 | Field used by UDAR to identify/match students 5 | false 6 | 7 | 80 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Lead__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lead__c 4 | SetNull 5 | false 6 | 7 | Lead 8 | Summit Events Registrations 9 | Summit_Events_Registrations 10 | false 11 | false 12 | false 13 | Lookup 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Matching_Log__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Matching_Log__c 4 | Log of matches and soft matches. 5 | false 6 | Log of matches and soft matches. 7 | 8 | 32768 9 | false 10 | false 11 | Html 12 | 25 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/New_Lead_Created__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | New_Lead_Created__c 4 | false 5 | false 6 | 7 | false 8 | false 9 | Checkbox 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Preferred_Class_Year__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Preferred_Class_Year__c 4 | Created for Alumni Relations Events to match on Preferred class year. 5 | false 6 | 7 | 4 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Presentation_Location__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Presentation_Location__c 4 | false 5 | 6 | false 7 | false 8 | false 9 | Picklist 10 | 11 | true 12 | Buildings 13 | 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Presentation_Time__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Presentation_Time__c 4 | false 5 | 6 | 10 7 | false 8 | false 9 | false 10 | Text 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Registrant_Company_Organization__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Registrant_Company_Organization__c 4 | false 5 | 6 | 255 7 | false 8 | false 9 | false 10 | Text 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Registrant_Date_of_Birth__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Registrant_Date_of_Birth__c 4 | The date of birth of the registrant used mostly for contact matching. 5 | false 6 | The date of birth of the registrant used mostly for contact matching. 7 | 8 | false 9 | false 10 | false 11 | Date 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Registrant_Name_Tag__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Registrant_Name_Tag__c 4 | Preferred name tag text. 5 | false 6 | Preferred name tag text. 7 | 8 | 255 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Registrant_Other_Last_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Registrant_Other_Last_Name__c 4 | If a registrant type of other is singing up a student this is their last name. 5 | false 6 | 7 | 80 8 | false 9 | false 10 | false 11 | Text 12 | false 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Registrant_Parent_Phone__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Registrant_Parent_Phone__c 4 | Phone number for the parent of the student registering for the event. 5 | false 6 | Phone number for the parent of the student registering for the event. 7 | 8 | false 9 | false 10 | false 11 | Phone 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Registrant_Preferred_First_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Registrant_Preferred_First_Name__c 4 | A registrants preferred name (may be a nick name) 5 | false 6 | A registrants preferred name (may be a nick name) 7 | 8 | false 9 | false 10 | false 11 | TextArea 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Registrant_State_Province__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Registrant_State_Province__c 4 | false 5 | 6 | 100 7 | false 8 | false 9 | false 10 | Text 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Registrant_Title__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Registrant_Title__c 4 | false 5 | 6 | 128 7 | false 8 | false 9 | false 10 | Text 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Reminder_Call_Complete__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Reminder_Call_Complete__c 4 | false 5 | Has the attendee been called to remind them of the event? 6 | false 7 | Has the attendee been called to remind them of the event? 8 | 9 | false 10 | false 11 | Checkbox 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/Total_Appointments__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Total_Appointments__c 4 | false 5 | 6 | Summit_Events_Appointments__c.Event_Registration__c 7 | count 8 | false 9 | false 10 | Summary 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/gclid__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | gclid__c 4 | Analytic url parameter. 5 | false 6 | Analytic url parameter. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/utm_campaign__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | utm_campaign__c 4 | Analytic url parameter. 5 | false 6 | Analytic url parameter. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/utm_content__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | utm_content__c 4 | Analytic url parameter. 5 | false 6 | Analytic url parameter. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/utm_creative_format__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | utm_creative_format__c 4 | Analytic url parameter. 5 | false 6 | Analytic url parameter. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/utm_id__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | utm_id__c 4 | Analytic url parameter. 5 | false 6 | Analytic url parameter. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/utm_marketing_tactic__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | utm_marketing_tactic__c 4 | Analytic url parameter. 5 | false 6 | Analytic url parameter. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/utm_medium__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | utm_medium__c 4 | Analytic url parameter. 5 | false 6 | Analytic url parameter. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/utm_source__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | utm_source__c 4 | Analytic url parameter. 5 | false 6 | Analytic url parameter. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/utm_source_platform__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | utm_source_platform__c 4 | Analytic url parameter. 5 | false 6 | Analytic url parameter. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/fields/utm_term__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | utm_term__c 4 | Analytic url parameter. 5 | false 6 | Analytic url parameter. 7 | 8 | 2000 9 | false 10 | false 11 | LongTextArea 12 | 2 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | Event__c 5 | NAME 6 | Event_Registration_Requested_Date__c 7 | Event_Instance__c 8 | Contact__c 9 | Session__c 10 | LAST_UPDATE 11 | Everything 12 | 13 | en_US 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Registration__c/listViews/Community_Display.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Community_Display 4 | NAME 5 | Everything 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Settings__c/Summit_Events_Settings__c.object-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Hierarchy 4 | Settings for the Summit Events App 5 | false 6 | 7 | Public 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Settings__c/fields/Community_Base_URL__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Community_Base_URL__c 4 | The base url for the site where the Events App has been given permission to live in this org 5 | false 6 | The base url for the site where the Events App has been given permission to live in this org 7 | 8 | false 9 | false 10 | Url 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Settings__c/fields/Managed_Package__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Managed_Package__c 4 | true 5 | false 6 | 7 | false 8 | Checkbox 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Settings__c/fields/Turn_off_Appointment_Trigger__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Turn_off_Appointment_Trigger__c 4 | false 5 | Turns off Summit Events App Appointment trigger. 6 | false 7 | Turns off Summit Events App Appointment trigger. 8 | 9 | false 10 | Checkbox 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Settings__c/fields/Turn_off_Lead_Trigger__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Turn_off_Lead_Trigger__c 4 | false 5 | Turns off Summit Event App's Lead trigger. 6 | false 7 | Turns off Summit Event App's Lead trigger. 8 | 9 | false 10 | Checkbox 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Settings__c/fields/Turn_off_Registration_Trigger__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Turn_off_Registration_Trigger__c 4 | false 5 | Turns off Summit Events App registration record trigger. 6 | false 7 | Turns off Summit Events App registration record trigger. 8 | 9 | false 10 | Checkbox 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Settings__c/fields/reCAPTCHA_Endpoint__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | reCAPTCHA_Endpoint__c 4 | "https://www.google.com/recaptcha/api/siteverify" 5 | false 6 | 7 | false 8 | false 9 | Url 10 | 11 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Settings__c/fields/reCAPTCHA_Library_Url__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | reCAPTCHA_Library_Url__c 4 | "https://www.google.com/recaptcha/api.js" 5 | false 6 | 7 | 255 8 | false 9 | false 10 | Text 11 | false 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Settings__c/fields/reCAPTCHA_Secret_Key__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | reCAPTCHA_Secret_Key__c 4 | false 5 | 6 | 255 7 | false 8 | false 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events_Settings__c/fields/reCAPTCHA_Site_Key__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | reCAPTCHA_Site_Key__c 4 | false 5 | 6 | 255 7 | false 8 | false 9 | Text 10 | false 11 | 12 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/compactLayouts/Event_Highlights.compactLayout-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Highlights 4 | Event_Name__c 5 | Event_Type__c 6 | Start_Date__c 7 | Event_Status__c 8 | 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Academic_Program_List_Selected__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Academic_Program_List_Selected__c 4 | List of academic programs selected. 5 | false 6 | List of academic programs selected. 7 | 8 | 6000 9 | false 10 | false 11 | LongTextArea 12 | 3 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Academic_Program_Selected__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Academic_Program_Selected__c 4 | Programs available for selection in academic programs. 5 | false 6 | Programs available for selection in academic programs. 7 | 8 | 8000 9 | false 10 | false 11 | LongTextArea 12 | 3 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Add_Info_Question_Pick_List_1__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Add_Info_Question_Pick_List_1__c 4 | Return separated list that will be converted to a pick-list. 5 | false 6 | Return separated list that will be converted to a pick-list. 7 | 8 | false 9 | false 10 | false 11 | TextArea 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Add_Info_Question_Pick_List_2__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Add_Info_Question_Pick_List_2__c 4 | Return separated list that will be converted to a pick-list. 5 | false 6 | Return separated list that will be converted to a pick-list. 7 | 8 | false 9 | false 10 | false 11 | TextArea 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Add_Info_Question_Pick_List_3__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Add_Info_Question_Pick_List_3__c 4 | Return separated list that will be converted to a pick-list. 5 | false 6 | Return separated list that will be converted to a pick-list. 7 | 8 | false 9 | false 10 | false 11 | TextArea 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Add_Info_Question_Pick_List_4__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Add_Info_Question_Pick_List_4__c 4 | Return separated list that will be converted to a pick-list. 5 | false 6 | Return separated list that will be converted to a pick-list. 7 | 8 | false 9 | false 10 | false 11 | TextArea 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Add_Info_Question_Pick_List_5__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Add_Info_Question_Pick_List_5__c 4 | Return separated list that will be converted to a pick-list. 5 | false 6 | Return separated list that will be converted to a pick-list. 7 | 8 | false 9 | false 10 | false 11 | TextArea 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Display_Optional_Donation__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Display_Optional_Donation__c 4 | false 5 | Display a chance to give an optional donation on the submit page. 6 | false 7 | Display a chance to give an optional donation on the submit page. 8 | 9 | false 10 | false 11 | Checkbox 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Donation_Description__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Donation_Description__c 4 | A description that appears on the donation page. 5 | false 6 | A description that appears on the donation page. 7 | 8 | 4000 9 | false 10 | false 11 | Html 12 | 25 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Donation_Title__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Donation_Title__c 4 | Title displayed on the top of the optional donation page. 5 | false 6 | Title displayed on the top of the optional donation page. 7 | 8 | 255 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Event_Appointment_Title__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Appointment_Title__c 4 | Title (heading) that appears before the appointments (if any) for the event. 5 | false 6 | Title (heading) that appears before the appointments (if any) for the event. 7 | 8 | false 9 | false 10 | false 11 | TextArea 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Event_Cancel_Review_Description__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Cancel_Review_Description__c 4 | The instructions on the cancel review page. 5 | false 6 | The instructions on the cancel review page. 7 | 8 | 32768 9 | false 10 | false 11 | Html 12 | 25 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Event_Cancel_Review_Title__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Cancel_Review_Title__c 4 | The title on the page for cancel and review 5 | false 6 | The title on the page for cancel and review 7 | 8 | 255 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Event_Fee__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Fee__c 4 | Fee (cost) for the event. 5 | false 6 | Fee (cost) for the event. 7 | 8 | 8 9 | false 10 | 2 11 | false 12 | false 13 | Currency 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Event_Name__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_Name__c 4 | Event Name 5 | false 6 | Name of the event that displays on the registration page 7 | 8 | 80 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Event_description__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Event_description__c 4 | Description of Event 5 | false 6 | Describe the event 7 | 8 | 32768 9 | false 10 | false 11 | Html 12 | 10 13 | 14 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Guest_Tables_Available__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Guest_Tables_Available__c 4 | false 5 | Allow registrant to register guests by table. 6 | false 7 | Allow registrant to register guests by table. 8 | 9 | false 10 | false 11 | Checkbox 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Include_Time_frame_List__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Include_Time_frame_List__c 4 | false 5 | Ask the client for a general time-frame for event (drop down) 6 | false 7 | Ask the client for a general time-frame for event (drop down) 8 | 9 | false 10 | false 11 | Checkbox 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Location_Address__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Location_Address__c 4 | The address of the location the event is taking place. 5 | false 6 | The address of the location the event is taking place. 7 | 8 | 255 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Location_Title__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Location_Title__c 4 | Title of the location the event is taking place. 5 | false 6 | Title of the location the event is taking place. 7 | 8 | 80 9 | false 10 | false 11 | false 12 | Text 13 | false 14 | 15 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/fields/Program_Filter__c.field-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Program_Filter__c 4 | Text version of program pick-list for filtering. No for user display or editing. 5 | false 6 | Text version of program pick-list for filtering. No for user display or editing. 7 | 8 | false 9 | false 10 | false 11 | TextArea 12 | 13 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/listViews/All.listView-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | All 4 | NAME 5 | CREATED_DATE 6 | Everything 7 | 8 | en_US 9 | 10 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/validationRules/Contact_Matching_Multiple_Match_Required.validationRule-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Contact_Matching_Multiple_Match_Required 4 | true 5 | NOT(ISPICKVAL(Contact_Matching_Rules__c, '')) && 6 | ISPICKVAL(Contact_Matching_Multiple_Match_Behavior__c, '') 7 | "Contact Matching Multiple Match Behavior" is required when using a "Contact Matching Rule" 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/validationRules/Lead_Matching_Multiple_Match_Required.validationRule-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Lead_Matching_Multiple_Match_Required 4 | true 5 | NOT(ISPICKVAL(Lead_matching_rules__c, '')) && 6 | ISPICKVAL(Lead_Matching_Multiple_Match_Behavior__c, '') 7 | "Lead Matching Multiple Match Behavior" is required when using a "Lead Matching Rule" 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/objects/Summit_Events__c/validationRules/Must_Skip_Contact_Create_to_match_Lead.validationRule-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Must_Skip_Contact_Create_to_match_Lead 4 | true 5 | ISPICKVAL(Contact_Matching_No_Match_Behavior__c, 'Create Contact') && 6 | ISPICKVAL(Lead_matching_rules__c, 'Use Salesforce Duplicate Rule') 7 | When Lead matching is enabled, Contact Matching No Match Behavior value must be "Skip Creating Contact" 8 | 9 | -------------------------------------------------------------------------------- /force-app/main/default/pages/CastorTemplate2017.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | false 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/GeneralSLDS.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/OPUSTemplate2018.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | false 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEvents.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsAddToCalendar.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsAdditionalQuestions.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsCancelReview.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsConfirmation.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsDonation.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsGeneratedItineraries.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsHostAssignment.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsLetterheadLookup.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsParkingPass.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsPrintItineraries.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsRegister.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsRegisterAppointments.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsRegisterGuests.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/SummitEventsSubmit.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | true 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/pages/crowncollege2020.page-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | false 5 | false 6 | 7 | 8 | -------------------------------------------------------------------------------- /force-app/main/default/reports/SummitEventsReports.reportFolder-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Summit Events Reports 4 | 5 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/CastorScripts2017.js: -------------------------------------------------------------------------------- 1 | //deprecated -------------------------------------------------------------------------------- /force-app/main/default/staticresources/CastorScripts2017.resource: -------------------------------------------------------------------------------- 1 | //deprecated -------------------------------------------------------------------------------- /force-app/main/default/staticresources/CastorScripts2017.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | application/javascript 5 | Scripts for Castor 2017 template 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/CastorStyles2017.css: -------------------------------------------------------------------------------- 1 | /*deprecated*/ -------------------------------------------------------------------------------- /force-app/main/default/staticresources/CastorStyles2017.resource: -------------------------------------------------------------------------------- 1 | /*deprecated*/ 2 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/CastorStyles2017.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | text/css 5 | CastorStyles2017 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/OPUSScripts2018.js: -------------------------------------------------------------------------------- 1 | //deprecated -------------------------------------------------------------------------------- /force-app/main/default/staticresources/OPUSScripts2018.resource: -------------------------------------------------------------------------------- 1 | /*deprecated*/ -------------------------------------------------------------------------------- /force-app/main/default/staticresources/OPUSScripts2018.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Private 4 | text/javascript 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SummitEventsAssets.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | application/zip 5 | CSS, JS, and Images for Summit Events App 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SummitEventsAssets/img/UGParkingPass.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/force-app/main/default/staticresources/SummitEventsAssets/img/UGParkingPass.gif -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SummitEventsAssets/img/loading-shield.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/force-app/main/default/staticresources/SummitEventsAssets/img/loading-shield.gif -------------------------------------------------------------------------------- /force-app/main/default/staticresources/SummitEventsAssets/img/loading-summit_events.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/force-app/main/default/staticresources/SummitEventsAssets/img/loading-summit_events.gif -------------------------------------------------------------------------------- /force-app/main/default/staticresources/UGParkingPass.resource-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Public 4 | text/plain 5 | The background image for PDF generation of a Undergrad Visit Parking Pass 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/tabs/Summit_Events_Appointment_Type__c.tab-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Custom26: Flag 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/tabs/Summit_Events_Appointments__c.tab-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Custom25: Alarm clock 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/tabs/Summit_Events_Email__c.tab-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Custom92: Ship 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/tabs/Summit_Events_Host__c.tab-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Host data for Summit Events 5 | Custom1: Heart 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/tabs/Summit_Events_Instance__c.tab-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Custom9: Lightning 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/tabs/Summit_Events_Question__c.tab-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Summit Events Questions object used to create Questions for the Summit Events Registration Page. 5 | Custom57: Building Block 6 | 7 | -------------------------------------------------------------------------------- /force-app/main/default/tabs/Summit_Events_Registration__c.tab-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Custom15: People 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/tabs/Summit_Events__c.tab-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | true 4 | Custom50: Big top 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/triggers/SummitEventsAppointmentTrigger.trigger: -------------------------------------------------------------------------------- 1 | /** 2 | * Created by Thaddaeus Dahlberg, Software Engineer, University of St. Thomas on 2/1/2023. 3 | */ 4 | 5 | 6 | trigger SummitEventsAppointmentTrigger on Summit_Events_Appointments__c (after insert, after update, after delete, after undelete) { 7 | 8 | Summit_Events_Settings__c SummitEventsSettings = Summit_Events_Settings__c.getOrgDefaults(); 9 | if (!SummitEventsSettings.Turn_off_Appointment_Trigger__c) { 10 | if (Trigger.isAfter) { 11 | SummitEventsAppointmentTriggerHandler.generateItineraries(Trigger.new, Trigger.old); 12 | } 13 | } 14 | 15 | } -------------------------------------------------------------------------------- /force-app/main/default/triggers/SummitEventsAppointmentTrigger.trigger-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/triggers/SummitEventsLeadTrigger.trigger: -------------------------------------------------------------------------------- 1 | trigger SummitEventsLeadTrigger on Lead (after update) { 2 | 3 | 4 | Summit_Events_Settings__c SummitEventsSettings = Summit_Events_Settings__c.getOrgDefaults(); 5 | if (!SummitEventsSettings.Turn_off_Lead_Trigger__c) { 6 | if (Trigger.isAfter && Trigger.isUpdate) { 7 | SummitEventsAfterLeadConversion.afterUpdate(Trigger.new); 8 | } 9 | } 10 | } -------------------------------------------------------------------------------- /force-app/main/default/triggers/SummitEventsLeadTrigger.trigger-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/main/default/triggers/SummitEventsRegistrationTrigger.trigger-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsAddToCalendar_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsAdditionalQuestions_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsAfterLeadConversion_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsAppointmentTrigger_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsCancelReview_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsConfirmation_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsContactMatching_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsDonation_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsFeed_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsGeneratedItineraries_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsHostAssignment_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsLetterheadLookup_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsNamespace_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsParkingPass_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsPrintItineraries_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsRegisterAppointment_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsRegisterGuests_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsRegister_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsRegistration_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsShared_TEST.cls: -------------------------------------------------------------------------------- 1 | // Copyright (c) 2020, Salesforce.org. All rights reserved. 2 | // Use of this source code is governed by a BSD 3-Clause. 3 | // License can be found found in the LICENSE file in this repository. 4 | // Created by Thaddaeus Dahlberg on 6/12/2018. 5 | 6 | @IsTest 7 | public with sharing class SummitEventsShared_TEST { 8 | 9 | @IsTest 10 | static void testDepreciation() { 11 | 12 | Boolean depreciated = true; 13 | System.assertEquals(depreciated, true); 14 | } 15 | } -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsShared_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsSubmit_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEventsTestSharedDataFactory.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/SummitEvents_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /force-app/test/default/classes/summitRecaptcha_TEST.cls-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 61.0 4 | Active 5 | 6 | -------------------------------------------------------------------------------- /images/1.1 - New Event.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.1 - New Event.png -------------------------------------------------------------------------------- /images/1.10 - Event Description section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.10 - Event Description section.png -------------------------------------------------------------------------------- /images/1.11 - Additional Questions (optional) section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.11 - Additional Questions (optional) section.png -------------------------------------------------------------------------------- /images/1.12 - Appointment Option Page section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.12 - Appointment Option Page section.png -------------------------------------------------------------------------------- /images/1.13 - Confirmation Page section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.13 - Confirmation Page section.png -------------------------------------------------------------------------------- /images/1.14 - Cancel Review Page section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.14 - Cancel Review Page section.png -------------------------------------------------------------------------------- /images/1.15 - Analytic Tracking (Advanced users only) section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.15 - Analytic Tracking (Advanced users only) section.png -------------------------------------------------------------------------------- /images/1.16 - Related List Links.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.16 - Related List Links.png -------------------------------------------------------------------------------- /images/1.17 - Submit Page section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.17 - Submit Page section.png -------------------------------------------------------------------------------- /images/1.2 - Record type.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.2 - Record type.png -------------------------------------------------------------------------------- /images/1.3 - Preview Event Webform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.3 - Preview Event Webform.png -------------------------------------------------------------------------------- /images/1.4 - Calendar view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.4 - Calendar view.png -------------------------------------------------------------------------------- /images/1.5 - Information details section of Summit Events page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.5 - Information details section of Summit Events page.png -------------------------------------------------------------------------------- /images/1.7 Options section of Summit Events page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.7 Options section of Summit Events page.png -------------------------------------------------------------------------------- /images/1.8 - Audience and Location section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.8 - Audience and Location section.png -------------------------------------------------------------------------------- /images/1.9 - Programs related to event section.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/1.9 - Programs related to event section.png -------------------------------------------------------------------------------- /images/3.10_Contact_Matching_Multipe_Metadata_Examples.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.10_Contact_Matching_Multipe_Metadata_Examples.png -------------------------------------------------------------------------------- /images/3.11_Contact_Matching_Duplicate_Rule_Selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.11_Contact_Matching_Duplicate_Rule_Selection.png -------------------------------------------------------------------------------- /images/3.12_Contact_Matching_Summit_Events_Picklist_Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.12_Contact_Matching_Summit_Events_Picklist_Configuration.png -------------------------------------------------------------------------------- /images/3.13_Contact_Matching_Summit_Events_Picklist_Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.13_Contact_Matching_Summit_Events_Picklist_Configuration.png -------------------------------------------------------------------------------- /images/3.14_Contact_Matching_Summit_Events_Picklist_Field_Dependency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.14_Contact_Matching_Summit_Events_Picklist_Field_Dependency.png -------------------------------------------------------------------------------- /images/3.15_Contact_Matching_Summit_Events_Selections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.15_Contact_Matching_Summit_Events_Selections.png -------------------------------------------------------------------------------- /images/3.16_Contact_Matching_Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.16_Contact_Matching_Options.png -------------------------------------------------------------------------------- /images/3.17_Contact_Matching_No_Match_Behavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.17_Contact_Matching_No_Match_Behavior.png -------------------------------------------------------------------------------- /images/3.18_Contact_Matching_Multiple_Match_Behavior.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.18_Contact_Matching_Multiple_Match_Behavior.png -------------------------------------------------------------------------------- /images/3.19_Contact_Matching_Matching_Log_Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.19_Contact_Matching_Matching_Log_Example.png -------------------------------------------------------------------------------- /images/3.1_Contact_Matching_Options.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.1_Contact_Matching_Options.png -------------------------------------------------------------------------------- /images/3.2_Contact_Matching_Duplicate_Rules.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.2_Contact_Matching_Duplicate_Rules.png -------------------------------------------------------------------------------- /images/3.3_Contact_Matching_Matching_Rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.3_Contact_Matching_Matching_Rule.png -------------------------------------------------------------------------------- /images/3.4_Contact_Matching_Configure_Matching_Rule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.4_Contact_Matching_Configure_Matching_Rule.png -------------------------------------------------------------------------------- /images/3.5_Contact_Matching_Fuzzy_Logic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.5_Contact_Matching_Fuzzy_Logic.png -------------------------------------------------------------------------------- /images/3.6_Contact_Matching_Criteria_Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.6_Contact_Matching_Criteria_Example.png -------------------------------------------------------------------------------- /images/3.7_Contact_Matching_Custom_Metadata_Types.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.7_Contact_Matching_Custom_Metadata_Types.png -------------------------------------------------------------------------------- /images/3.8_Contact_Matching_Create_New_Custom_Mapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.8_Contact_Matching_Create_New_Custom_Mapping.png -------------------------------------------------------------------------------- /images/3.9_Contact_Matching _Custom_Metadata_Mapping_Example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/3.9_Contact_Matching _Custom_Metadata_Mapping_Example.png -------------------------------------------------------------------------------- /images/Add to Calendar Field Location image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Add to Calendar Field Location image.jpg -------------------------------------------------------------------------------- /images/Contact Matching Rule hardcoded fields v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Contact Matching Rule hardcoded fields v2.png -------------------------------------------------------------------------------- /images/Contact Matching only Setup on Summit Event record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Contact Matching only Setup on Summit Event record.png -------------------------------------------------------------------------------- /images/Contact and Lead Matching Setup when using both on Summit Event record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Contact and Lead Matching Setup when using both on Summit Event record.png -------------------------------------------------------------------------------- /images/CreateEventSummit-DonationRegView.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/CreateEventSummit-DonationRegView.PNG -------------------------------------------------------------------------------- /images/CreateEventSummit-DonationSec.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/CreateEventSummit-DonationSec.PNG -------------------------------------------------------------------------------- /images/CreateEventSummit-EventFeesAllocationPNG.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/CreateEventSummit-EventFeesAllocationPNG.PNG -------------------------------------------------------------------------------- /images/CreateEventSummit-EventFeesRegView.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/CreateEventSummit-EventFeesRegView.PNG -------------------------------------------------------------------------------- /images/CreateEventSummit-EventFeesSection.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/CreateEventSummit-EventFeesSection.PNG -------------------------------------------------------------------------------- /images/Custom Settings 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Custom Settings 1.png -------------------------------------------------------------------------------- /images/Custom Settings 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Custom Settings 2.png -------------------------------------------------------------------------------- /images/Custom Settings 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Custom Settings 3.png -------------------------------------------------------------------------------- /images/Duplicate Rule settings screenshot for Summit Events matching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Duplicate Rule settings screenshot for Summit Events matching.png -------------------------------------------------------------------------------- /images/Guest User Config 1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Guest User Config 1.png -------------------------------------------------------------------------------- /images/Guest User Config 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Guest User Config 2.png -------------------------------------------------------------------------------- /images/Guest User Config 3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Guest User Config 3.png -------------------------------------------------------------------------------- /images/Lead Duplicate Rule settings screenshot for Summit Events matching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Lead Duplicate Rule settings screenshot for Summit Events matching.png -------------------------------------------------------------------------------- /images/Lead Matching Custom Metadata Mappings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Lead Matching Custom Metadata Mappings.png -------------------------------------------------------------------------------- /images/Lead Matching Rule hardcoded fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Lead Matching Rule hardcoded fields.png -------------------------------------------------------------------------------- /images/Lead Matching only Setup on Summit Event record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Lead Matching only Setup on Summit Event record.png -------------------------------------------------------------------------------- /images/Sharing Settings Config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Sharing Settings Config.png -------------------------------------------------------------------------------- /images/Site Configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Site Configuration.png -------------------------------------------------------------------------------- /images/Site Label Reference.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Site Label Reference.png -------------------------------------------------------------------------------- /images/Site Setup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Site Setup.png -------------------------------------------------------------------------------- /images/Site URL Capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Site URL Capture.png -------------------------------------------------------------------------------- /images/Summit Events App Badge fv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Summit Events App Badge fv.png -------------------------------------------------------------------------------- /images/Summit Events Contact Matching Mappings Custom Metadata screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Summit Events Contact Matching Mappings Custom Metadata screenshot.png -------------------------------------------------------------------------------- /images/Summit Events ERD.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Summit Events ERD.PNG -------------------------------------------------------------------------------- /images/Summit Events Publish on website screenshot 6 - CORS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Summit Events Publish on website screenshot 6 - CORS.png -------------------------------------------------------------------------------- /images/Summit Events page code section 1 - Lines 15-29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Summit Events page code section 1 - Lines 15-29.png -------------------------------------------------------------------------------- /images/Summit Events page code section 2 - Lines 42-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Summit Events page code section 2 - Lines 42-44.png -------------------------------------------------------------------------------- /images/Summit Events page code section 3 - Lines 50-54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Summit Events page code section 3 - Lines 50-54.png -------------------------------------------------------------------------------- /images/Summit Events page code section 4- Line 117 Feed URL replace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Summit Events page code section 4- Line 117 Feed URL replace.png -------------------------------------------------------------------------------- /images/Summit Events publish on website screenshot 5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SFDO-Community/Summit-Events-App/7b5564322c993cf5eee340b85f0cceae28ba4be7/images/Summit Events publish on website screenshot 5.png -------------------------------------------------------------------------------- /images/images.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /orgs/beta.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgName": "Summit Events Beta", 3 | "edition": "Developer", 4 | "features": ["Sites"], 5 | "settings": { 6 | "lightningExperienceSettings": { 7 | "enableS1DesktopEnabled": true 8 | }, 9 | "chatterSettings": { 10 | "enableChatter": true 11 | }, 12 | "userManagementSettings": { 13 | "enableNewProfileUI": true 14 | }, 15 | "securitySettings": { 16 | "enableAdminLoginAsAnyUser": true, 17 | "sessionSettings": { 18 | "forceRelogin": false 19 | } 20 | }, 21 | "languageSettings": { 22 | "enableTranslationWorkbench": true 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /orgs/dev.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgName": "Summit Events Dev", 3 | "edition": "Developer", 4 | "features": ["Sites"], 5 | "settings": { 6 | "lightningExperienceSettings": { 7 | "enableS1DesktopEnabled": true 8 | }, 9 | "chatterSettings": { 10 | "enableChatter": true 11 | }, 12 | "userManagementSettings": { 13 | "enableNewProfileUI": true 14 | }, 15 | "securitySettings": { 16 | "enableAdminLoginAsAnyUser": true, 17 | "sessionSettings": { 18 | "forceRelogin": false 19 | } 20 | }, 21 | "languageSettings": { 22 | "enableTranslationWorkbench": true 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /orgs/dev_namespaced.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgName": "Summit Events Dev", 3 | "edition": "Developer", 4 | "features": ["Sites"], 5 | "namespace": "summit", 6 | "settings": { 7 | "lightningExperienceSettings": { 8 | "enableS1DesktopEnabled": true 9 | }, 10 | "chatterSettings": { 11 | "enableChatter": true 12 | }, 13 | "userManagementSettings": { 14 | "enableNewProfileUI": true 15 | }, 16 | "securitySettings": { 17 | "enableAdminLoginAsAnyUser": true, 18 | "sessionSettings": { 19 | "forceRelogin": false 20 | } 21 | }, 22 | "languageSettings": { 23 | "enableTranslationWorkbench": true 24 | } 25 | } 26 | } -------------------------------------------------------------------------------- /orgs/feature.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgName": "Summit Events Feature", 3 | "edition": "Developer", 4 | "features": ["Sites"], 5 | "settings": { 6 | "lightningExperienceSettings": { 7 | "enableS1DesktopEnabled": true 8 | }, 9 | "chatterSettings": { 10 | "enableChatter": true 11 | }, 12 | "userManagementSettings": { 13 | "enableNewProfileUI": true 14 | }, 15 | "securitySettings": { 16 | "enableAdminLoginAsAnyUser": true, 17 | "sessionSettings": { 18 | "forceRelogin": false 19 | } 20 | }, 21 | "languageSettings": { 22 | "enableTranslationWorkbench": true 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /orgs/release.json: -------------------------------------------------------------------------------- 1 | { 2 | "orgName": "Summit Events Release", 3 | "edition": "Enterprise", 4 | "features": ["Sites"], 5 | "settings": { 6 | "lightningExperienceSettings": { 7 | "enableS1DesktopEnabled": true 8 | }, 9 | "chatterSettings": { 10 | "enableChatter": true 11 | }, 12 | "userManagementSettings": { 13 | "enableNewProfileUI": true 14 | }, 15 | "securitySettings": { 16 | "enableAdminLoginAsAnyUser": true, 17 | "sessionSettings": { 18 | "forceRelogin": false 19 | } 20 | }, 21 | "languageSettings": { 22 | "enableTranslationWorkbench": true 23 | } 24 | } 25 | } -------------------------------------------------------------------------------- /unpackaged/config/sharing/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Summit_Events__c 5 | SharingRules 6 | 7 | 8 | Account 9 | SharingRules 10 | 11 | 12 | Summit_Events_Fee_Allocation__c 13 | SharingRules 14 | 15 | 60.0 16 | 17 | -------------------------------------------------------------------------------- /unpackaged/config/sharing/sharingRules/Account.sharingRules-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Education_Industry_Accounts_for_Guests 5 | Read 6 | 7 | 8 | Summit_Events 9 | 10 | 11 | Industry 12 | equals 13 | Education 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /unpackaged/config/site/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Summit_Events 5 | CustomSite 6 | 7 | 60.0 8 | 9 | -------------------------------------------------------------------------------- /unpackaged/config/summit__sharing/package.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | summit__Summit_Events__c 5 | SharingRules 6 | 7 | 8 | Account 9 | SharingRules 10 | 11 | 12 | summit__Summit_Events_Fee_Allocation__c 13 | SharingRules 14 | 15 | 60.0 16 | 17 | -------------------------------------------------------------------------------- /unpackaged/config/summit__sharing/sharingRules/Account.sharingRules-meta.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Education_Industry_Accounts_for_Guests 5 | Read 6 | 7 | 8 | Summit_Events 9 | 10 | 11 | Industry 12 | equals 13 | Education 14 | 15 | 16 | 17 | --------------------------------------------------------------------------------