-
Notifications
You must be signed in to change notification settings - Fork 4
/
permissions.acl
63 lines (55 loc) · 1.8 KB
/
permissions.acl
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
/**
* Votechain access control
*
* Author: Gui Vieira <[email protected]>
Mortimer Sotom <[email protected]>
*/
rule CandidatesCantSubmitTransactions {
description: "Don't allow candidates to submit a vote/transaction"
participant: "blockchain.wizards.votechain.Candidate"
operation: CREATE
resource: "blockchain.wizards.votechain.Vote"
action: DENY
}
rule VotersCanSubmitTransactions {
description: "Allow voters to submit their vote, a transaction"
participant: "blockchain.wizards.votechain.Voter"
operation: CREATE
resource: "blockchain.wizards.votechain.Vote"
action: ALLOW
}
rule EveryoneCanCheckIfVoterHasVoted {
description: "Anyone can check if a voter has voted or not"
participant: "blockchain.wizards.votechain.User"
operation: READ
resource: "blockchain.wizards.votechain.Voter"
action: ALLOW
}
rule EveryoneCanReadCandidateInfo {
description: "Anyone can read candidate information"
participant: "blockchain.wizards.votechain.User"
operation: READ
resource: "blockchain.wizards.votechain.Candidate"
action: ALLOW
}
/* rule SystemACL {
description: "System ACL to permit all access"
participant: "org.hyperledger.composer.system.Participant"
operation: ALL
resource: "org.hyperledger.composer.system.**"
action: ALLOW
} */
rule NetworkAdminUser {
description: "Network admins can only monitor the network"
participant: "org.hyperledger.composer.system.NetworkAdmin"
operation: ALL
resource: "**"
action: ALLOW
}
rule NetworkAdminSystem {
description: "Grant business network administrators full access to system resources"
participant: "org.hyperledger.composer.system.NetworkAdmin"
operation: CREATE, READ
resource: "org.hyperledger.composer.system.**"
action: ALLOW
}