forked from OrchardCMS/Orchard
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPermissions.cs
More file actions
28 lines (24 loc) · 986 Bytes
/
Permissions.cs
File metadata and controls
28 lines (24 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System.Collections.Generic;
using Orchard.Environment.Extensions.Models;
using Orchard.Security.Permissions;
namespace Orchard.Modules
{
public class Permissions : IPermissionProvider
{
public static readonly Permission ManageFeatures = new Permission { Description = "Manage Features", Name = "ManageFeatures", IsSecurityCritical = true };
public virtual Feature Feature { get; set; }
public IEnumerable<Permission> GetPermissions()
{
return new[] { ManageFeatures };
}
public IEnumerable<PermissionStereotype> GetDefaultStereotypes()
{
return new[] {
new PermissionStereotype {
Name = "Administrator",
Permissions = new[] {ManageFeatures}
}
};
}
}
}