Skip to content

Commit

Permalink
BAH-2765: Adding new privilege for abdm services
Browse files Browse the repository at this point in the history
  • Loading branch information
swatigogia2020 authored and SanoferSameera committed Jan 12, 2023
1 parent ae40837 commit f7d41df
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions api/src/main/resources/liquibase.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,14 @@
insert into global_property(property,description,property_value,uuid) values('abdm.conceptsTypesToBeIgnored','Concept types to be ignored for hip atomfeeds','',uuid());
</sql>
</changeSet>
<changeSet id="Adding-Permission-for-abdm-services" author="swati">
<preConditions onFail="MARK_RAN">
<sqlCheck expectedResult="0">select count(*) from privilege where privilege='app:abdm'</sqlCheck>
</preConditions>
<comment>Adding new privilage for ABDM services</comment>
<sql>
insert into privilege(privilege,description,uuid) values('app:abdm','privilege to view abdm services',uuid());
</sql>
</changeSet>

</databaseChangeLog>

0 comments on commit f7d41df

Please sign in to comment.