Skip to content

Commit e2983b5

Browse files
committed
fix: update sophos guide
1 parent 2f87899 commit e2983b5

File tree

2 files changed

+18
-2
lines changed

2 files changed

+18
-2
lines changed

backend/src/main/java/com/park/utmstack/domain/application_modules/factory/impl/ModuleSophos.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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());
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
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>

0 commit comments

Comments
 (0)