Skip to content
This repository was archived by the owner on May 31, 2024. It is now read-only.

Commit 2ce3d4d

Browse files
authored
Merge pull request #31 from lemoncloud-io/develop
merge to master
2 parents d13af40 + 6d39b15 commit 2ce3d4d

3 files changed

Lines changed: 11 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @lemoncloud/lemon-front-lib
22

3+
## 1.3.14
4+
5+
### Patch Changes
6+
7+
- add updateStoragePrefix() to IdentityService
8+
39
## 1.3.13
410

511
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@lemoncloud/lemon-front-lib",
3-
"version": "1.3.13",
3+
"version": "1.3.14",
44
"description": "Web Core Library for Lemoncloud",
55
"exports": "./dist/index.js",
66
"types": "./dist/index.d.ts",

src/core/identity.service.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,10 @@ export class IdentityService {
3939
this.setExtraData(options);
4040
}
4141

42+
updateStoragePrefix(projectName: string) {
43+
this.lemonStorage.updatePrefix(projectName);
44+
}
45+
4246
getSavedCredentials(): Promise<{ [key: string]: string }> {
4347
return this.lemonStorage.getAllItems();
4448
}

0 commit comments

Comments
 (0)