Skip to content

Instantly share code, notes, and snippets.

@keirbowden
Created May 3, 2015 17:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keirbowden/9d03c510be1ede37eca4 to your computer and use it in GitHub Desktop.
Save keirbowden/9d03c510be1ede37eca4 to your computer and use it in GitHub Desktop.
Apex Controller for the Case Render App
public class CasesController {
@AuraEnabled
public static List<Case> GetRecentCases()
{
List<Case> cases=[select id, CaseNumber, Subject, CreatedDate, Status, Priority
from Case
order by CreatedDate desc
limit 5];
return cases;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment