I'm building a java webapp with a members only section using AngularJs. My question is in regards to AngularJs modules. Should I create two separate Angular modules for the members only and public portions of the app?
btw I'm new to angularjs.
thanks
This is a design descision that is up to you. For reference here is part of the AngularJS Documentation on recommended module setup
Your idea of splitting up the application into reusable parts makes sense with the "module for each filter" recommendation.