Advertisement
Guest User

Untitled

a guest
Jul 18th, 2017
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. component {
  2.  
  3.     public void function index(any event) {
  4.         // Grab the event collection from the event.
  5.         local.rc = event.getCollection();
  6.        
  7.         // Set the welcome message into the event.
  8.         local.rc.welcomeMessage = 'Welcome to ColdBox!';
  9.        
  10.         // Set the view which the user will see.
  11.         event.setView('home');
  12.     }
  13.    
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement