Skip to content

Commit

Permalink
Merge pull request #578 from SalesforceFoundation/feature/238__sort-c…
Browse files Browse the repository at this point in the history
…ohort-names-alphbetically

Sort Program Cohorts alphabetically
  • Loading branch information
dospromptman committed Mar 8, 2022
2 parents c07fceb + 7e83ec4 commit 969c03f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions force-app/main/default/classes/ProgramSelector.cls
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ public with sharing class ProgramSelector {
SELECT Id, Name
FROM ProgramCohort__c
WHERE Program__c = :programId
ORDER BY Name ASC
];

return Security.stripInaccessible(AccessType.READABLE, programCohorts)
Expand Down

0 comments on commit 969c03f

Please sign in to comment.