mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-05 02:59:26 +00:00
10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import APIClient from '../../functions/APIClient';
|
|
|
|
const restoreSnapshot = async (snapshotId: string) => {
|
|
return APIClient(`/api/appsettings/snapshot/${snapshotId}/`, {
|
|
method: 'POST',
|
|
});
|
|
};
|
|
|
|
export default restoreSnapshot;
|