User dashboard

A good web application for task management is not complete with an admin area for only the backend. Every individual member needs his own dashboard too. This means that a member should be able to manage his own projects and tasks in his own workspaces without having access to the backend.

Let's say that all frontend activities should be kept inside the /dashboard URL. The good news is that we already set up the firewall for the dashboard. As you remember, these settings are done in security.yml:

 firewalls: # ... main: pattern: .* context: user form_login: provider: fos_userbundle login_path: /login use_forward: false check_path: /login_check failure_path: null logout: true anonymous: true access_control: # ... # Secured part of the ...

Get Mastering Symfony now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.