Files
2025-02-26 14:49:25 +07:00

14 lines
610 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<!-- Sample configuration for grant/revoke Study Permissions on Series Stored event -->
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="xml"/>
<!-- overwritten by application with actual value -->
<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='0020000D']}"/>
</permissions>
</xsl:template>
</xsl:stylesheet>