ensure the user cannot access the media list dashboard if they don't have root access

This commit is contained in:
Shannon
2017-07-31 16:03:31 +10:00
parent 6de2cea9c5
commit b20e3c7435
2 changed files with 11 additions and 5 deletions

View File

@@ -37,10 +37,16 @@ namespace Umbraco.Web.Models.ContentEditing
/// </summary>
[DataMember(Name = "remainingAuthSeconds")]
public double SecondsUntilTimeout { get; set; }
/// <summary>
/// The user's calculated start nodes based on the start nodes they have assigned directly to them and via the groups they're assigned to
/// </summary>
[DataMember(Name = "startContentIds")]
public int[] StartContentIds { get; set; }
/// <summary>
/// The user's calculated start nodes based on the start nodes they have assigned directly to them and via the groups they're assigned to
/// </summary>
[DataMember(Name = "startMediaIds")]
public int[] StartMediaIds { get; set; }