This is an automated email from the ASF dual-hosted git repository. arnold pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/fineract.git
commit 7ed0f4d991a5d62bc7c0602e789830ab6e8a4b64 Author: Akshat Soni <[email protected]> AuthorDate: Mon Nov 10 19:57:14 2025 +0530 FINERACT-2407: add permission READ_FAMILYMEMBERS --- .../db/changelog/tenant/changelog-tenant.xml | 1 + .../0205_add_read_familymembers_permission.xml | 36 ++++++++++++++++++++++ 2 files changed, 37 insertions(+) diff --git a/fineract-provider/src/main/resources/db/changelog/tenant/changelog-tenant.xml b/fineract-provider/src/main/resources/db/changelog/tenant/changelog-tenant.xml index bd793bed16..bddd169745 100644 --- a/fineract-provider/src/main/resources/db/changelog/tenant/changelog-tenant.xml +++ b/fineract-provider/src/main/resources/db/changelog/tenant/changelog-tenant.xml @@ -223,4 +223,5 @@ <include file="parts/0202_trial_balance_summary_with_asset_owner_journal_entry_aggregation.xml" relativeToChangelogFile="true" /> <include file="parts/0203_transaction_summary_with_asset_owner_report_with_capitalized_income.xml" relativeToChangelogFile="true" /> <include file="parts/0204_transaction_summary_with_asset_owner_and_from_asset_owner_id_for_buybacks.xml" relativeToChangelogFile="true" /> + <include file="parts/0205_add_read_familymembers_permission.xml" relativeToChangelogFile="true" /> </databaseChangeLog> diff --git a/fineract-provider/src/main/resources/db/changelog/tenant/parts/0205_add_read_familymembers_permission.xml b/fineract-provider/src/main/resources/db/changelog/tenant/parts/0205_add_read_familymembers_permission.xml new file mode 100644 index 0000000000..e482eafef9 --- /dev/null +++ b/fineract-provider/src/main/resources/db/changelog/tenant/parts/0205_add_read_familymembers_permission.xml @@ -0,0 +1,36 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + + Licensed to the Apache Software Foundation (ASF) under one + or more contributor license agreements. See the NOTICE file + distributed with this work for additional information + regarding copyright ownership. The ASF licenses this file + to you under the Apache License, Version 2.0 (the + "License"); you may not use this file except in compliance + with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, + software distributed under the License is distributed on an + "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + KIND, either express or implied. See the License for the + specific language governing permissions and limitations + under the License. + +--> +<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-4.3.xsd"> + <changeSet id="1" author="fineract"> + <insert tableName="m_permission"> + <column name="id" valueNumeric="963"/> + <column name="grouping" value="portfolio"/> + <column name="code" value="READ_FAMILYMEMBERS"/> + <column name="entity_name" value="FAMILYMEMBERS"/> + <column name="action_name" value="READ"/> + <column name="can_maker_checker" valueBoolean="false"/> + </insert> + </changeSet> + +</databaseChangeLog>
