I'm new on Plone and I'm developing a small add-on package.
How can I define a permission so that only logged users can access to the pages of the package?
The actual permission is the following:
<browser:page
name="homepage"
for="*"
permissions="zope.View"
class=".homepage.HomepageView"
/>
With the standard permissions="zope.View" the page is accessible from everyone.