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

Commit

Permalink
Merge pull request #31 from lemoncloud-io/develop
Browse files Browse the repository at this point in the history
merge to master
  • Loading branch information
louis-lemon authored Nov 20, 2023
2 parents d13af40 + 6d39b15 commit 2ce3d4d
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @lemoncloud/lemon-front-lib

## 1.3.14

### Patch Changes

- add updateStoragePrefix() to IdentityService

## 1.3.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lemoncloud/lemon-front-lib",
"version": "1.3.13",
"version": "1.3.14",
"description": "Web Core Library for Lemoncloud",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down
4 changes: 4 additions & 0 deletions src/core/identity.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ export class IdentityService {
this.setExtraData(options);
}

updateStoragePrefix(projectName: string) {
this.lemonStorage.updatePrefix(projectName);
}

getSavedCredentials(): Promise<{ [key: string]: string }> {
return this.lemonStorage.getAllItems();
}
Expand Down

0 comments on commit 2ce3d4d

Please sign in to comment.