Skip to content

Commit

Permalink
Merge pull request hyperledger#1124 from anikitinDSR/public/indy-1916
Browse files Browse the repository at this point in the history
[INDY-1916] add NETWORK_MONITOR into list of validRoles
  • Loading branch information
ashcherbakov authored Jan 14, 2019
2 parents 2b0a8d3 + fbb0d47 commit 341dd2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions indy_common/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from indy_common.constants import OWNER, POOL_UPGRADE, TRUST_ANCHOR, NYM, \
POOL_CONFIG, SCHEMA, CLAIM_DEF, \
POOL_RESTART, VALIDATOR_INFO
POOL_RESTART, VALIDATOR_INFO, NETWORK_MONITOR
from indy_common.roles import Roles

logger = getlogger()
Expand Down Expand Up @@ -71,7 +71,7 @@ def generate_auth_map(valid_roles, anyone_can_write=None):


class Authoriser:
ValidRoles = (TRUSTEE, STEWARD, TRUST_ANCHOR, None)
ValidRoles = (TRUSTEE, STEWARD, TRUST_ANCHOR, NETWORK_MONITOR, None)

auth_map = None

Expand Down

0 comments on commit 341dd2f

Please sign in to comment.