This commit is contained in:
2025-02-26 14:49:25 +07:00
commit 1c1d9c4474
6403 changed files with 1953774 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- Sample configuration for grant/revoke Study Permissions on MPPS create requests -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml"/>
<!-- overwritten by application with actual value of the Performed Station AET -->
<xsl:param name="calling" select="'SAMPLE_MOD'" />
<xsl:template match="/dataset">
<permissions>
<!-- grant Query, Read and Append permission on Study to Doctor -->
<grant role="Doctor" action="Q,R,A"
suid="{attr[@tag='00400270']/item/attr[@tag='0020000D']}"/>
</permissions>
</xsl:template>
</xsl:stylesheet>