Skip to content
View gbutt's full-sized avatar

Block or report gbutt

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. shared-salesforce shared-salesforce Public

    A repository for me to share some things I built for Salesforce using Apex and Lightning Web Components (LWCs)

    Apex 6

  2. angular-vf-remote-actions angular-vf-remote-actions Public

    An angular 1.x library for Salesforce that makes it easy to call remote actions on a visualforce page. This should be used only if you host your angular app in a visualforce page.

    JavaScript 4 1

  3. Grant Permission Set or Permission S... Grant Permission Set or Permission Set Group to Users in Batch Apex
    1
    /**
    2
     *	Assigns a permission set or permission set group to all user with the specified profile.
    3
     *   Additional filter criteria can be passed in if the users needs filtered further.
    4
     *   Example: Only assign permission set to community users on the Salesforce account 
    5
     *            String filter = 'Contact.Account.Name = \'Salesforce\'';
  4. SFDX script to retrieve profiles and... SFDX script to retrieve profiles and perm sets with object CRUD and FLS
    1
    #!/bin/bash
    2
    
                  
    3
    TARGET_ORG=$1
    4
    
                  
    5
    if ["$TARGET_ORG" == ""]; then
  5. JsonReader JsonReader
    1
      public class JsonReader {
    2
        public Map<String, Object> jsonMap {get; set;}
    3
    
                  
    4
        public JsonReader(Map<String, Object> jsonMap) {
    5
            this.jsonMap = jsonMap;
  6. StubProviderImpl.cls StubProviderImpl.cls
    1
        @IsTest
    2
        public class StubProviderImpl implements System.StubProvider {
    3
            public Type mockType {get; private set;}
    4
    
                  
    5
            private Map<String, Object> mockedCalls {get; set;}