I want to write news website where user will be accessed only after login. I can write everything in app.module
but want to have nice architecture and I need an advice.
Should I create another module for account? Should I create another module for articles?
So I'll have
app.module
articles.module
account.module
Is this good practice?
I should pass session id on every request after log in. Would be that better?
app.module // + account folder where will be desired components/services articles.module