forked from Q42/Orchard-DbTranslations
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Permissions.cs
33 lines (28 loc) · 1015 Bytes
/
Permissions.cs
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
29
30
31
32
33
using System.Collections.Generic;
using Orchard.Environment.Extensions.Models;
using Orchard.Security.Permissions;
namespace Q42.DbTranslations
{
public class Permissions : IPermissionProvider
{
public static readonly Permission UploadTranslation = new Permission { Description = "Upload new translations", Name = "Upload" };
public static readonly Permission Translate = new Permission { Description = "Translate strings", Name = "Translate", ImpliedBy = new[] { UploadTranslation } };
public virtual Feature Feature { get; set; }
public IEnumerable<Permission> GetPermissions()
{
return new[] {
UploadTranslation,
Translate
};
}
public IEnumerable<PermissionStereotype> GetDefaultStereotypes()
{
return new[] {
new PermissionStereotype {
Name = "Administrator",
Permissions = new[] {UploadTranslation, Translate}
}
};
}
}
}