Custom dashboard for User dialog
You can now add a custom dashboard to the user dialog , just like you can with all of the sections in Umbraco. This allows you to tailor information, shortcuts and metrics for the logged-in user. The possibilities are endless, as you’re essentially adding a view to the user dialog and can add any HTML and power that with AngularJS to provide server-side data, integrate with third parties and so on.
It’s based on the conventions you already know from adding other dashboards, properties editors and similar via a package.manifest file.
{
"dashboards": [
{
"alias": "my-user-dashboard",
"view": "~/App_Plugins/my-user-dashboard/view.html",
"sections": ["user-dialog"]
}
]
}
As you can see above, you create a new dashboard object in the package.manifest file and under sections assign it to the user-dialog. That’s it! You‘ve got your custom dashboard up and running (assuming you’ve got the HTML file in place 😉 ) and can now proceed as you do with any other custom dashboard.
For inspiration, you can follow the custom dashboard tutorial in the documentation.
Checkered image background for file uploads
It’s now easier to see which images uploaded to the Media Section are transparent. The new Media Picker now shows a checkered background, as is standard when working with images.