diff --git a/.gitignore b/.gitignore index eebba7e..85aa472 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ # For useful gitignore templates see: https://github.com/github/gitignore # Salesforce cache +.sf .sfdx/ .localdevserver/ diff --git a/force-app/main/default/classes/SFDCStopTeamController.cls b/force-app/main/default/classes/SFDCStopTeamController.cls index 3402241..4a86850 100644 --- a/force-app/main/default/classes/SFDCStopTeamController.cls +++ b/force-app/main/default/classes/SFDCStopTeamController.cls @@ -430,6 +430,16 @@ public class SFDCStopTeamController { ); + sfdcstopContributors.add( + new Contributor( + 'Bharath Inti', + 'https://avatars.githubusercontent.com/u/34135208?v=4', + Date.newInstance(2023, 09, 08), + 'https://www.salesforce.com/trailblazer/binti' + ) + + ); + return JSON.serialize(sfdcstopContributors); } }