File tree Expand file tree Collapse file tree 2 files changed +18
-2
lines changed
java/com/park/utmstack/domain/application_modules/factory/impl
resources/config/liquibase/changelog Expand file tree Collapse file tree 2 files changed +18
-2
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ public List<ModuleConfigurationKey> getConfigurationKeys(Long groupId) throws Ex
4646 .withGroupId (groupId )
4747 .withConfKey ("sophos_client_id" )
4848 .withConfName ("Client Id" )
49- .withConfDescription ("Configure Sophos Central client id " )
49+ .withConfDescription ("Configure Sophos Central Client Id " )
5050 .withConfDataType ("text" )
5151 .withConfRequired (true )
5252 .build ());
@@ -56,7 +56,7 @@ public List<ModuleConfigurationKey> getConfigurationKeys(Long groupId) throws Ex
5656 .withGroupId (groupId )
5757 .withConfKey ("sophos_x_api_key" )
5858 .withConfName ("Client Secret" )
59- .withConfDescription ("Configure Sophos Central client secret " )
59+ .withConfDescription ("Configure Sophos Central Client Secret " )
6060 .withConfDataType ("password" )
6161 .withConfRequired (true )
6262 .build ());
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <databaseChangeLog
3+ xmlns =" http://www.liquibase.org/xml/ns/dbchangelog"
4+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5+ xsi : schemaLocation =" http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-3.5.xsd" >
6+
7+ <changeSet id =" 20250303001" author =" Manuel" >
8+ <sql >
9+ <![CDATA[
10+ DELETE FROM utm_module_group
11+ WHERE module_id = (SELECT id FROM utm_module WHERE module_name = 'SOPHOS');
12+ ]]>
13+ </sql >
14+ </changeSet >
15+
16+ </databaseChangeLog >
You can’t perform that action at this time.
0 commit comments