You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public static readonly Permission ConfigureGoogleAnalytics = new Permission { Description = "Configure Google Analytics", Name = "ConfigureGoogleAnalytics" };
public virtual Feature Feature { get; set; }
public IEnumerable<Permission> GetPermissions() {
return new[] { ConfigureGoogleAnalytics };
}
public IEnumerable<PermissionStereotype> GetDefaultStereotypes() {
return new[] { new PermissionStereotype { Name = "Administrator", Permissions = new[] {ConfigureGoogleAnalytics} } };