Switch address to contain an embedded location, start saving compliance
This commit is contained in:
parent
14c0d453e9
commit
bac55774f8
16 changed files with 281 additions and 238 deletions
|
|
@ -10,7 +10,15 @@ export const useStoreLocal = defineStore("local", () => {
|
|||
localStorage.setItem("session_id", id.toString());
|
||||
return id;
|
||||
}
|
||||
function getExistingComplianceReportURI(): string | null {
|
||||
return localStorage.getItem("working_compilance_report_uri");
|
||||
}
|
||||
function setExistingComplianceReportURI(uri: string) {
|
||||
localStorage.setItem("working_compilance_report_uri", uri);
|
||||
}
|
||||
return {
|
||||
getClientID,
|
||||
getExistingComplianceReportURI,
|
||||
setExistingComplianceReportURI,
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue