View Source
Interface IDashboardService
Assembly: Umbraco.Core.dll
Syntax
public interface IDashboardService
Methods
View Source
GetDashboards(String, IUser)
Gets dashboard for a specific section/application
For a specific backoffice user
Declaration
IEnumerable<Tab<IDashboard>> GetDashboards(string section, IUser currentUser)
Parameters
| Type |
Name |
Description |
| System.String |
section |
|
| IUser |
currentUser |
|
Returns
View Source
GetDashboards(IUser)
Gets all dashboards, organized by section, for a user.
Declaration
IDictionary<string, IEnumerable<Tab<IDashboard>>> GetDashboards(IUser currentUser)
Parameters
| Type |
Name |
Description |
| IUser |
currentUser |
|
Returns
| Type |
Description |
| IDictionary<System.String, IEnumerable<Tab<IDashboard>>> |
|