From a4192dfd0808ef7d22625ab64e84751e76ac743b Mon Sep 17 00:00:00 2001 From: IntiBharath Date: Fri, 8 Sep 2023 22:48:07 +0530 Subject: [PATCH 1/2] updated gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index eebba7e6..85aa4726 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,7 @@ # For useful gitignore templates see: https://github.com/github/gitignore # Salesforce cache +.sf .sfdx/ .localdevserver/ From 3d38b077c6dc6b6021499dca80a41c18223859b7 Mon Sep 17 00:00:00 2001 From: IntiBharath Date: Fri, 8 Sep 2023 23:36:49 +0530 Subject: [PATCH 2/2] Add myDetails to the sfdcstopContributors list --- .../main/default/classes/SFDCStopTeamController.cls | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/force-app/main/default/classes/SFDCStopTeamController.cls b/force-app/main/default/classes/SFDCStopTeamController.cls index 34022416..4a868509 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); } }