Advertisement
Guest User

Untitled

a guest
Jan 7th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. global String username{get;set;}
  2. global String password{get;set;}
  3.  
  4. global CommunitiesLoginController () {
  5. username = 'theusername';
  6. password = 'the password';
  7. }
  8.  
  9. global PageReference comlogin() {
  10. String startUrl = System.currentPageReference().getParameters().get('startURL');
  11. return Site.login(username, password, startUrl);
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement