Redirect to another page after Login

Hello All,

In Yii framework I have used User extension. Now when I am using login after login the page is redirected to the profile page. Now I want when a user will login he will redirected to the dashboard page. Now can some one tell me how to redirect some one after login to other page.Well I am just a newbie to Yii framework. So any help and suggestions will be highly appreciable.

Read the docs!





    'modules' => array(

        'user' => array(

            'returnLogoutUrl' => array('/project/index'),

            'returnUrl' => array('/site/index'),

        ),