Multiple Forums With Separate Accessibility

In my app, I would like to have 2 separate forums: a public forum and a private forum. The public forum would be readable by any user (even if not logged in) and writeable by any logged-in user. The private forum area would be both readable and writeable only to users who have a particular role.

Is it possible to do this with bbii? If so, how would I set up and configure this? Would it work to register the module twice, like this? –


'modules'=>array(

    'public_forum'=>array(

        'class'=>'application.modules.bbii.BbiiModule',

        'adminId'=>1,

        'userClass'=>'User',

        'userIdColumn'=>'id',

        'userNameColumn'=>'username',

    ),

    'private_forum'=>array(

        'class'=>'application.modules.bbii.BbiiModule',

        'adminId'=>1,

        'userClass'=>'User',

        'userIdColumn'=>'id',

        'userNameColumn'=>'username',

    ),

),