mirror of
https://github.com/Qortal/chrome-extension.git
synced 2025-04-25 12:27:52 +00:00
added rebuild to sym keys
This commit is contained in:
parent
99641c0901
commit
299377af72
@ -79,7 +79,7 @@ export const AdminSpaceInner = ({
|
|||||||
const res = await fetch(
|
const res = await fetch(
|
||||||
`${getBaseApiReact()}/arbitrary/DOCUMENT_PRIVATE/${
|
`${getBaseApiReact()}/arbitrary/DOCUMENT_PRIVATE/${
|
||||||
getLatestPublish.name
|
getLatestPublish.name
|
||||||
}/${getLatestPublish.identifier}?encoding=base64`
|
}/${getLatestPublish.identifier}?encoding=base64&rebuild=true`
|
||||||
);
|
);
|
||||||
data = await res.text();
|
data = await res.text();
|
||||||
|
|
||||||
|
@ -66,7 +66,7 @@ export const CreateCommonSecret = ({groupId, secretKey, isOwner, myAddress, sec
|
|||||||
const res = await fetch(
|
const res = await fetch(
|
||||||
`${getBaseApiReact()}/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
`${getBaseApiReact()}/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
||||||
publish.identifier
|
publish.identifier
|
||||||
}?encoding=base64`
|
}?encoding=base64&rebuild=true`
|
||||||
);
|
);
|
||||||
const data = await res.text();
|
const data = await res.text();
|
||||||
|
|
||||||
|
@ -833,7 +833,7 @@ export const Group = ({
|
|||||||
const res = await fetch(
|
const res = await fetch(
|
||||||
`${getBaseApiReact()}/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
`${getBaseApiReact()}/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
||||||
publish.identifier
|
publish.identifier
|
||||||
}?encoding=base64`
|
}?encoding=base64&rebuild=true`
|
||||||
);
|
);
|
||||||
data = await res.text();
|
data = await res.text();
|
||||||
}
|
}
|
||||||
|
@ -3585,7 +3585,7 @@ export const decryptQortalGroupData = async (data, sender) => {
|
|||||||
if(publish === false) throw new Error('No group key found.')
|
if(publish === false) throw new Error('No group key found.')
|
||||||
const url = await createEndpoint(`/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
const url = await createEndpoint(`/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
||||||
publish.identifier
|
publish.identifier
|
||||||
}?encoding=base64`);
|
}?encoding=base64&rebuild=true`);
|
||||||
|
|
||||||
const res = await fetch(
|
const res = await fetch(
|
||||||
url
|
url
|
||||||
@ -3616,7 +3616,7 @@ url
|
|||||||
if(publish === false) throw new Error('No group key found.')
|
if(publish === false) throw new Error('No group key found.')
|
||||||
const url = await createEndpoint(`/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
const url = await createEndpoint(`/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
||||||
publish.identifier
|
publish.identifier
|
||||||
}?encoding=base64`);
|
}?encoding=base64&rebuild=true`);
|
||||||
|
|
||||||
const res = await fetch(
|
const res = await fetch(
|
||||||
url
|
url
|
||||||
@ -3726,7 +3726,7 @@ export const encryptQortalGroupData = async (data, sender) => {
|
|||||||
if(publish === false) throw new Error('No group key found.')
|
if(publish === false) throw new Error('No group key found.')
|
||||||
const url = await createEndpoint(`/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
const url = await createEndpoint(`/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
||||||
publish.identifier
|
publish.identifier
|
||||||
}?encoding=base64`);
|
}?encoding=base64&rebuild=true`);
|
||||||
|
|
||||||
const res = await fetch(
|
const res = await fetch(
|
||||||
url
|
url
|
||||||
@ -3760,7 +3760,7 @@ url
|
|||||||
if(publish === false) throw new Error('No group key found.')
|
if(publish === false) throw new Error('No group key found.')
|
||||||
const url = await createEndpoint(`/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
const url = await createEndpoint(`/arbitrary/DOCUMENT_PRIVATE/${publish.name}/${
|
||||||
publish.identifier
|
publish.identifier
|
||||||
}?encoding=base64`);
|
}?encoding=base64&rebuild=true`);
|
||||||
|
|
||||||
const res = await fetch(
|
const res = await fetch(
|
||||||
url
|
url
|
||||||
|
Loading…
x
Reference in New Issue
Block a user