refactor: GIS-Redux-Slices reduziert auf 4 (statt 5) – veraltete Slices und Thunks entfernt, Code bereinigt

This commit is contained in:
ISA
2025-05-21 09:57:02 +02:00
parent a081a94731
commit 3a30162783
17 changed files with 163 additions and 208 deletions

View File

@@ -0,0 +1,11 @@
// /redux/thunks/fetchGisSystemStaticThunk.js
import { createAsyncThunk } from "@reduxjs/toolkit";
import { fetchGisSystemStaticService } from "../../services/webservice/fetchGisSystemStaticService";
/**
* Redux-Thunk für fetchGisSystemStatic
*/
export const fetchGisSystemStaticThunk = createAsyncThunk("gisSystemStatic/fetch", async () => {
return await fetchGisSystemStaticService();
});