-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathac.app
80 lines (63 loc) · 990 Bytes
/
ac.app
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
module ac
access control rules
rule page root() {
true
}
rule page about() {
true
}
// rule template mainheader(p : Project) {
// mayAccess(p)
// }
//
rule page search(p: Project, q : String) {
mayAccess(p)
}
rule page searchAllProjects(q : String){
true
}
rule page features() {
true
}
rule ajaxtemplate validationFeedback(vem : ValidationExceptionMultiple){
true
}
rule ajaxtemplate empty() {
true
}
rule page getProjects(){
true
}
rule page getMyProjects() {
securityContext.loggedIn
}
rule page getPopularProjects() {
true
}
rule page getProject() {
true
}
rule page createIssueService() {
true
}
rule page getIssues() {
true
}
rule page getRoadmap() {
true
}
rule page getIssuesDetails() {
true
}
rule page authenticate() {
true
}
rule page checkAuthenticate() {
true
}
rule page logoutDevice() {
true
}
rule logsql {
isAdministrator()
}