Updated system email templates and role permissions

This commit is contained in:
rajesh
2026-04-09 18:07:57 +05:30
parent 67bf81e5ae
commit a5606c1018
2 changed files with 244 additions and 0 deletions

View File

@@ -3240,4 +3240,46 @@
<changeSet id="09-04-2026_RK_115923" author="Rajesh Khore">
<sqlFile dbms="postgresql" path="db/dump/update_email_config_for_mailgun_09_04_2026.sql" />
</changeSet>
<changeSet id="09-04-2026_RK_143457" author="Rajesh Khore">
<sqlFile dbms="postgresql" path="db/dump/update_system_email_template_09_04_2026.sql" />
</changeSet>
<changeSet id="09-04-2026_RK_174653" author="Rajesh Khore">
<update tableName="role">
<column name="permissions" value="MANAGE_SUBSEQUENT_PHASES"/>
<where>role_type='ROLE_GEPAFIN_OPERATOR'</where>
</update>
<update tableName="role">
<column name="permissions" value="VIEW_CALLS,APPLY_CALLS"/>
<where>role_type='ROLE_BENEFICIARY'</where>
</update>
<update tableName="role">
<column name="permissions" value="EVALUATE_APPLICATIONS,MANAGE_PRELIMINARY_RELIEF"/>
<where>role_type='ROLE_PRE_INSTRUCTOR'</where>
</update>
<update tableName="role">
<column name="permissions" value="EVALUATE_APPLICATIONS,MANAGE_PRELIMINARY_RELIEF,ASSIGED_APPLICATION"/>
<where>role_type='ROLE_INSTRUCTOR_MANAGER'</where>
</update>
<update tableName="role">
<column name="permissions" value="VIEW_CONFIDI_CALLS,APPLY_CONFIDI_CALLS"/>
<where>role_type='ROLE_CONFIDI'</where>
</update>
<update tableName="role">
<column name="permissions" value="ROOT_MANAGE_APPL_VIEW_DELETED,ROOT_MANAGE_APPL_DELETE_CONFIRM"/>
<where>role_type='ROLE_DIRECTOR'</where>
</update>
<update tableName="role">
<column name="permissions" value="MANAGE_TENDERS,MANAGE_USERS,ROOT_MANAGE_NDG,ROOT_MANAGE_APPL_STATUS,ROOT_MANAGE_AMENDMENT_REOPEN,ROOT_MANAGE_AMENDMENT_EXTEND,ROOT_MANAGE_APPL_VIEW_DELETED,ROOT_MANAGE_APPL_DELETE,ROOT_MANAGE_PEC_SEND,ROOT_MANAGE_VIEW_LOG,ROOT_MANAGE_EMAIL_TEMPLATES,ROOT_MANAGE_CALL_COPY"/>
<where>role_type='ROLE_SUPER_ADMIN'</where>
</update>
</changeSet>
</databaseChangeLog>