From 73145d3e9489825dc08059d47053d21547534d79 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Wed, 27 Jul 2022 13:51:05 +0200 Subject: [PATCH] add fetchers for upgrader --- src/Umbraco.Web.UI.Client/src/core/api/fetcher.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Umbraco.Web.UI.Client/src/core/api/fetcher.ts b/src/Umbraco.Web.UI.Client/src/core/api/fetcher.ts index aa2e94e4a6..7ffde22645 100644 --- a/src/Umbraco.Web.UI.Client/src/core/api/fetcher.ts +++ b/src/Umbraco.Web.UI.Client/src/core/api/fetcher.ts @@ -17,3 +17,5 @@ export const getUserSections = fetcher.path('/user/sections').method('get').crea export const getInstallSettings = fetcher.path('/install/settings').method('get').create(); export const postInstallValidateDatabase = fetcher.path('/install/validateDatabase').method('post').create(); export const postInstallSetup = fetcher.path('/install/setup').method('post').create(); +export const getUpgradeSettings = fetcher.path('/upgrade/settings').method('get').create(); +export const PostUpgradeAuthorize = fetcher.path('/upgrade/authorize').method('post').create();