90. EPMO Open Source Coordination Office Redaction File Detail Report

Produced by Araxis Merge on 10/4/2017 8:04:36 AM Central Daylight Time. See www.araxis.com for information about Merge. This report uses XHTML and CSS2, and is best viewed with a modern standards-compliant browser. For optimum results when printing this report, use landscape orientation and enable printing of background images and colours in your browser.

90.1 Files compared

# Location File Last Modified
1 rdk.zip\rdk\product\production\rdk\src\subsystems\pep enforced-resource-permissions.js Mon Aug 21 12:51:00 2017 UTC
2 rdk.zip\rdk\product\production\rdk\src\subsystems\pep enforced-resource-permissions.js Tue Oct 3 17:18:36 2017 UTC

90.2 Comparison summary

Description Between
Files 1 and 2
Text Blocks Lines
Unchanged 2 222
Changed 1 2
Inserted 0 0
Removed 0 0

90.3 Comparison options

Whitespace
Character case Differences in character case are significant
Line endings Differences in line endings (CR and LF characters) are ignored
CR/LF characters Not shown in the comparison detail

90.4 Active regular expressions

No regular expressions were active.

90.5 Comparison detail

  1   /**
  2    * Created  by alexlu ong on 11/ 2/15.
  3    */
  4  
  5   /**
  6    * Should  be kept up -to-date w ith: https ://wiki.vi stacore.us /display/ DNS  RE/Patient +Read+Perm ission+Map pings#Pati entReadPer missionMap pings-Reso urce>Permi ssion
  7    * Used by  pep-confi g-enforcer -spec.js t o ensure r esources a re assigne d the corr ect permis sions
  8    */
  9   //jshint - W069
  10   var permis sions = {} ;
  11  
  12   permission s['patient -record-al lergy'] =  {
  13       get: [ 'read-alle rgy']
  14   };
  15   permission s['patient -record-ap pointment' ] = {
  16       get: [ 'read-enco unter']
  17   };
  18   permission s['cds-adv ice-detail '] = {
  19       get: [ 'read-clin ical-remin der']
  20   };
  21   permission s['cds-adv ice-list']  = {
  22       get: [ 'read-clin ical-remin der']
  23   };
  24   permission s['healths ummaries-g etReportCo ntentByRep ortID'] =  {
  25       get: [ 'read-vist a-health-s ummary']
  26   };
  27   permission s['healths ummaries-g etSitesInf oFromPatie ntData'] =  {
  28       get: [ 'read-vist a-health-s ummary']
  29   };
  30   permission s['order-d etail'] =  {
  31       get: [ 'read-orde r']
  32   };
  33   permission s['patient -record-al lergy'] =  {
  34       get: [ 'read-alle rgy']
  35   };
  36   permission s['patient -record-ap pointment' ] = {
  37       get: [ 'read-enco unter']
  38   };
  39   permission s['patient -record-co mplexnote' ] = {
  40       get: [ 'read-docu ment']
  41   };
  42   permission s['patient -record-do cument'] =  {
  43       get: [ 'read-docu ment']
  44   };
  45   permission s['patient -record-do cument-vie w'] = {
  46       get: [ 'read-docu ment']
  47   };
  48   permission s['patient -record-im munization '] = {
  49       get: [ 'read-immu nization']
  50   };
  51   permission s['patient -record-la b'] = {
  52       get: [ 'read-orde r']
  53   };
  54   permission s['patient -record-la bsbypanel' ] = {
  55       get: [ 'read-orde r']
  56   };
  57   permission s['patient -record-me d'] = {
  58       get: [ 'read-acti ve-medicat ion']
  59   };
  60   permission s['patient -record-pa tient'] =  {
  61       get: [ 'read-pati ent-record ']
  62   };
  63   permission s['patient -record-pr oblem'] =  {
  64       get: [ 'read-cond ition-prob lem']
  65   };
  66   permission s['patient -record-ti meline'] =  {
  67       get: [ 'read-enco unter']
  68   };
  69   permission s['patient -record-vi tal'] = {
  70       get: [ 'read-vita l']
  71   };
  72   permission s['patient -record-vl erdocument '] = {
  73       get: [ 'read-docu ment']
  74   };
  75   permission s['patient -search-fu ll-name']  = {
  76       get: [ 'read-pati ent-record ']
  77   };
  78   permission s['patient -search-de tail-docum ent'] = {
  79       get: [ 'read-pati ent-record ']
  80   };
  81   permission s['patient -search-de tail-trend '] = {
  82       get: [ 'read-pati ent-record ']
  83   };
  84   permission s['patient -search-la st5'] = {
  85       get: [ 'read-pati ent-record ']
  86   };
  87   permission s['patient -search-pi d'] = {
  88       get: [ 'read-pati ent-record ']
  89   };
  90   permission s['patient -search-te xt'] = {
  91       get: [ 'read-pati ent-record ']
  92   };
  93   permission s['patient -search-su ggest'] =  {
  94       get: [ 'read-pati ent-record ']
  95   };
  96   permission s['search- default-se arch'] = {
  97       get: [ 'read-pati ent-record ']
  98   };
  99   permission s['search- global-sea rch'] = {
  100       get: [ 'read-pati ent-record ']
  101   };
  102   permission s['tasks-t asks'] = {
  103       get: [ 'read-task ']
  104   };
  105   permission s['uid'] =  {
  106       get: [ 'read-pati ent-record ']
  107   };
  108   permission s['user-de fined-stac k'] = {
  109       get: [ 'access-st ack-graph' ]
  110   };
  111  
  112   module.exp orts = per missions;