2 Replies Latest reply on Jun 4, 2003 8:00 AM by fb2

    How to enable module for public access

    fb2

      I've started to create my module based on the template module in CVS.
      It works just fine, however the module is only accessible from the main menu for the "admin" user.
      How can I enable it for public access?

        • 1. Re: How to enable module for public access

          you have to declare in throuth the Configuration attribute in the jboss-service.xml.

          <!-- Declare the template module as a JBoss service -->

          nukes.modules:name=core

          <!-- This declares the main operation as public -->
          <!-- and it will be shown in the main menu -->

          <operation
          name="main"
          display-name="Template"
          description="Template module"
          image=""
          hint=""/>




          yo enable it for public access you have to add a security rule :

          <group-permission permission="0/READ/core:menu:/menu:template:main"/>

          or you can also modify the rule :

          <group-permission permission="0/READ/core:menu:/menu:(journal|faq):main"/>

          in

          <group-permission permission="0/READ/core:menu:/menu:(journal|faq|template):main"/>

          • 2. Re: How to enable module for public access
            fb2

            Thanks. it worked.