-
-
Notifications
You must be signed in to change notification settings - Fork 166
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamic field visibility for LogEntry__c HTTP response header fields #569
Merged
jongpie
merged 5 commits into
main
from
feature/dynamic-field-visibility-for-http-response-headers
Oct 13, 2023
Merged
Dynamic field visibility for LogEntry__c HTTP response header fields #569
jongpie
merged 5 commits into
main
from
feature/dynamic-field-visibility-for-http-response-headers
Oct 13, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
…t didn't previously have an equivalent checkbox field Also rewrote several tests in LogEntryHandler_Tests to be unit tests without DML
…ional visibility for the fields HttpResponseHeaderKeys__c and HttpResponseHeaders__c, based on the new checkbox field HasHttpResponseHeaders__c
jongpie
added
Type: Enhancement
New feature or request
Salesforce Feature: Reporting
Anything related to reports, dashboards, and the underlying data model
Layer: Log Management
Items related to the custom objects & Logger Console app
labels
Oct 12, 2023
jongpie
temporarily deployed
to
Base Scratch Org
October 12, 2023 02:13
— with
GitHub Actions
Inactive
jongpie
temporarily deployed
to
Experience Cloud Scratch Org
October 12, 2023 02:13
— with
GitHub Actions
Inactive
jongpie
force-pushed
the
feature/dynamic-field-visibility-for-http-response-headers
branch
from
October 12, 2023 20:28
858180f
to
bb3b92b
Compare
jongpie
temporarily deployed
to
Experience Cloud Scratch Org
October 12, 2023 20:34
— with
GitHub Actions
Inactive
jongpie
temporarily deployed
to
Base Scratch Org
October 12, 2023 20:34
— with
GitHub Actions
Inactive
Codecov ReportAll modified lines are covered by tests ✅
📢 Thoughts on this report? Let us know!. |
jongpie
deleted the
feature/dynamic-field-visibility-for-http-response-headers
branch
October 13, 2023 00:51
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Layer: Log Management
Items related to the custom objects & Logger Console app
Salesforce Feature: Reporting
Anything related to reports, dashboards, and the underlying data model
Type: Enhancement
New feature or request
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New
LogEntry__c
checkbox fieldsLogEntry__c
for each long textarea fields that didn't previously have an equivalent checkbox field. Note: these new fields will be inaccurate for existingLogEntry__c
records (but correct on new records).HasDatabaseResultJson__c
- set based onlogEntry.DatabaseResultJson__c != null
HasHttpRequestBody__c
- set based onlogEntry.HttpRequestBody__c != null
HasHttpResponseBody__c
- set based onlogEntry.HttpResponseBody__c != null
HasHttpResponseHeaderKeys__c
- set based onlogEntry.HttpResponseHeaderKeys__c != null
HasHttpResponseHeaders__c
- set based onlogEntry.HttpResponseHeaders__c != null
LogEntryHandler_Tests
to be true unit tests that do not rely on DMLDynamic field visibility for
LogEntry__c
HTTP response header fieldLogEntryRecordPage.flexipage-meta.xml
to have conditional visibility for the fieldsHttpResponseHeaderKeys__c
andHttpResponseHeaders__c
, based on the new checkbox fieldHasHttpResponseHeaders__c