Skip to content

Commit d34c9f8

Browse files
author
swatigogia2020
committed
BAH-2765: Adding new privilege for abdm services
1 parent ae40837 commit d34c9f8

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/build_and_upload.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
push:
88
branches:
99
- master
10+
- BAH-2765
1011
workflow_dispatch:
1112
env:
1213
ORG_NAME: BahmniIndiaDistro

api/src/main/resources/liquibase.xml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,14 @@
101101
insert into global_property(property,description,property_value,uuid) values('abdm.conceptsTypesToBeIgnored','Concept types to be ignored for hip atomfeeds','',uuid());
102102
</sql>
103103
</changeSet>
104+
<changeSet id="Adding-Permission-for-abdm-services" author="swati">
105+
<preConditions onFail="MARK_RAN">
106+
<sqlCheck expectedResult="0">select count(*) from privilege where privilege='app:abdm'</sqlCheck>
107+
</preConditions>
108+
<comment>Adding new privilage for ABDM services</comment>
109+
<sql>
110+
insert into privilege(privilege,description,uuid) values('app:abdm','privilege to view abdm services',uuid());
111+
</sql>
112+
</changeSet>
104113

105114
</databaseChangeLog>

0 commit comments

Comments
 (0)