This file contains hidden or 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
| # This code is based upon the following links: | |
| # https://developer.github.com/v3/git/trees/ | |
| # https://github.com/testcollab/rails-test | |
| # https://stackoverflow.com/questions/23637961/how-do-i-mark-a-file-as-deleted-in-a-tree-using-the-github-api | |
| # https://git.521000.bestmunity/t/deleting-files-via-trees-no-longer-works/14042 | |
| # This creates a signed commit on the correct branch, but there are 0 changed files. | |
| # THIS IS THE METHOD THAT IS CALLED BY THE MAIN PROCESS TO REMOVE FILES |
This file contains hidden or 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
| # https://git.521000.bestmunity/t/deleting-files-via-trees-no-longer-works/14042 | |
| def commit_files_to_remove | |
| # get the base branch tree that has all of the files in it | |
| branch_tree = github.git_data.trees.get @repo.username, | |
| @repo.repo_name, | |
| new_branch_sha, | |
| recursive: true | |
| # select only the files for THIS badge |
This file contains hidden or 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
| module Restforce | |
| class Mash < Hashie::Mash | |
| class << self | |
| def klass(val) | |
| if val.key? 'records' | |
| # When the hash has a records key, it should be considered a collection | |
| # of sobject records. | |
| Restforce::Collection |
This file contains hidden or 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
| begin | |
| require 'sinatra' | |
| require 'omniauth' | |
| require 'omniauth-salesforce' | |
| rescue LoadError | |
| require 'rubygems' | |
| require 'sinatra' | |
| require 'omniauth' | |
| require 'omniauth-salesforce' |
This file contains hidden or 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
| const jsforce = require('jsforce'); | |
| const jwt = require("salesforce-jwt-bearer-token-flow"); | |
| // create the connection to the org | |
| let conn = new jsforce.Connection(); | |
| // load the private key for the token | |
| let privateKey = require('fs').readFileSync('./server.key', 'utf8'); | |
| jwt.getToken({ |
This file contains hidden or 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
| function openModal(name) { | |
| $("#"+name).addClass('slds-fade-in-open'); | |
| $("#backdrop").addClass('slds-backdrop_open'); | |
| } | |
| function closeModal(name) { | |
| $("#"+name).removeClass('slds-fade-in-open'); | |
| $("#backdrop").removeClass('slds-backdrop_open'); | |
| } |
This file contains hidden or 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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <CustomObject xmlns="http://soap.sforce.com/2006/04/metadata"> | |
| <actionOverrides> | |
| <actionName>Accept</actionName> | |
| <type>Default</type> | |
| </actionOverrides> | |
| <actionOverrides> | |
| <actionName>CancelEdit</actionName> | |
| <type>Default</type> | |
| </actionOverrides> |
This file contains hidden or 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
| // create the association object with the final data | |
| associations = { | |
| "elements": elements | |
| } | |
| // create all of the associations | |
| request({ | |
| url: 'https://api.clover.com:443/v3/merchants/'+process.env.CLOVER_MERCHANT_ID+'/category_items', | |
| method: 'POST', | |
| headers: { |
This file contains hidden or 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
| List<Product2> products = [select id, name from product2 where productcode = 'foo']; | |
| Set<Id> ids = (new Map<Id,Product2>(products)).keySet(); | |
| System.debug(ids.size()); |
This file contains hidden or 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
| [ | |
| { | |
| "name": "Insuron Bulk Company" | |
| }, | |
| { | |
| "name": "Orboid Bulk Company" | |
| }, | |
| { | |
| "name": "Bovis Bulk Company" | |
| }, |