Redirect to home page after login in angular-meteor

I have used the default login which the meteor provides. But i would like to redirect the user after he/she has logged in, to another page(home page). Can you please tell me how to do it. I am using angular framework for the frontend. So it is angular-meteor app. Right now i don’t know how to control in my controller. I have integrated social sign on also, so i would like to redirect just after the user logs-in to the desired page.

Check out Accounts documentation

Accounts.onLogin(function(){
 // do something after user has authenticated
});