Skip to content

Commit a4b0fae

Browse files
author
FalkWolsky
committedSep 17, 2024
De-Branding in forget-password eMail Template
1 parent bd11687 commit a4b0fae

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed
 

‎server/api-service/lowcoder-domain/src/main/java/org/lowcoder/domain/organization/service/OrganizationService.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,7 @@ public interface OrganizationService {
1616

1717
public static final String PASSWORD_RESET_EMAIL_TEMPLATE_DEFAULT = "<p>Hi, %s<br/>" +
1818
"Here is the link to reset your password: %s<br/>" +
19-
"Please note that the link will expire after 12 hours.<br/><br/>" +
20-
"Regards,<br/>" +
21-
"The Lowcoder Team</p>";
19+
"Please note that the link will expire after 12 hours.<br/><br/></p>";
2220

2321
@PossibleEmptyMono
2422
Mono<Organization> getOrganizationInEnterpriseMode();

‎server/api-service/lowcoder-server/src/main/java/org/lowcoder/api/npm/PrivateNpmRegistryEndpoint.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public interface PrivateNpmRegistryEndpoint {
1919
tags = TAG_NPM_REGISTRY_MANAGEMENT,
2020
operationId = "getNpmPackageMeta",
2121
summary = "Get NPM registry Metadata",
22-
description = "Retrieve the metadata of private NPM registry package within Lowcoder."
22+
description = "Retrieve the metadata of private NPM registry package."
2323
)
2424
// @GetMapping("/registry/{name}")
2525
public Mono<ResponseEntity<Resource>> getNpmPackageMeta(@PathVariable String name);
@@ -28,7 +28,7 @@ public interface PrivateNpmRegistryEndpoint {
2828
tags = TAG_NPM_REGISTRY_MANAGEMENT,
2929
operationId = "getNpmPackageAsset",
3030
summary = "Get NPM registry asset",
31-
description = "Retrieve the asset of private NPM registry package within Lowcoder."
31+
description = "Retrieve the asset of private NPM registry package."
3232
)
3333
// @GetMapping("/package/{path}")
3434
public Mono<ResponseEntity<Resource>> getNpmPackageAsset(@PathVariable String path);

0 commit comments

Comments
 (0)