We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
OVERVIEW Add Field level security check to the saveSelectedSectionText Method:
ACCEPTANCE CRITERIA
@AuraEnabled public static void saveSelectedSectionText(String itemid, String blockid){ GGW_Content_Block__c cBlock = GGW_ContentBlockSelector.queryContentBlockById(blockid); // Construct selected Item to update GGW_Selected_Item__c item = new GGW_Selected_Item__c(); item.Id = itemid; item.Selected_Block__c = blockid; item.Text_Block__c = cBlock.Description__c; // Copy rich text from block to item for edits if(Schema.sObjectType.GGW_Selected_Item__c.isUpdateable()){ update item; } }
OUT OF SCOPE
BACKGROUND/REFERENCE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
OVERVIEW
Add Field level security check to the saveSelectedSectionText Method:
ACCEPTANCE CRITERIA
OUT OF SCOPE
BACKGROUND/REFERENCE
The text was updated successfully, but these errors were encountered: