docs
This commit is contained in:
16
docs/redux/thunks/webservice/fetchGisLinesStatusThunk.md
Normal file
16
docs/redux/thunks/webservice/fetchGisLinesStatusThunk.md
Normal file
@@ -0,0 +1,16 @@
|
||||
<!-- /docs/redux/thunks/webservice/fetchGisLinesStatusThunk.md -->
|
||||
|
||||
# 📡 fetchGisLinesStatusThunk.js
|
||||
|
||||
Async-Thunk zum Laden des Status aller Linien aus dem Webservice.
|
||||
|
||||
## Verwendung
|
||||
|
||||
```js
|
||||
dispatch(fetchGisLinesStatusThunk());
|
||||
```
|
||||
|
||||
## Intern
|
||||
|
||||
- Ruft `fetchGisLinesStatusService()` auf
|
||||
- Fehlerbehandlung per `rejectWithValue(error.message)`
|
||||
@@ -0,0 +1,15 @@
|
||||
<!-- /docs/redux/thunks/webservice/fetchGisStationsMeasurementsThunk.md -->
|
||||
|
||||
# 📈 fetchGisStationsMeasurementsThunk.js
|
||||
|
||||
Lädt Messwerte aller Stationen (z. B. Schleifenwiderstand, Isolation).
|
||||
|
||||
## Verwendung
|
||||
|
||||
```js
|
||||
dispatch(fetchGisStationsMeasurementsThunk());
|
||||
```
|
||||
|
||||
## Intern
|
||||
|
||||
- Ruft `fetchGisStationsMeasurementsService()` auf
|
||||
@@ -0,0 +1,15 @@
|
||||
<!-- /docs/redux/thunks/webservice/fetchGisStationsStaticDistrictThunk.md -->
|
||||
|
||||
# 🧭 fetchGisStationsStaticDistrictThunk.js
|
||||
|
||||
Lädt statische Standortdaten (z. B. Koordinaten) für den aktuellen Bezirk.
|
||||
|
||||
## Verwendung
|
||||
|
||||
```js
|
||||
dispatch(fetchGisStationsStaticDistrictThunk());
|
||||
```
|
||||
|
||||
## Intern
|
||||
|
||||
- Ruft `fetchGisStationsStaticDistrictService()` auf
|
||||
@@ -0,0 +1,15 @@
|
||||
<!-- /docs/redux/thunks/webservice/fetchGisStationsStatusDistrictThunk.md -->
|
||||
|
||||
# 🚦 fetchGisStationsStatusDistrictThunk.js
|
||||
|
||||
Lädt Statusdaten (aktiv/inaktiv) aller Stationen im Bezirk.
|
||||
|
||||
## Verwendung
|
||||
|
||||
```js
|
||||
dispatch(fetchGisStationsStatusDistrictThunk());
|
||||
```
|
||||
|
||||
## Intern
|
||||
|
||||
- Ruft `fetchGisStationsStatusDistrictService()` auf
|
||||
15
docs/redux/thunks/webservice/fetchGisSystemStaticThunk.md
Normal file
15
docs/redux/thunks/webservice/fetchGisSystemStaticThunk.md
Normal file
@@ -0,0 +1,15 @@
|
||||
<!-- /docs/redux/thunks/webservice/fetchGisSystemStaticThunk.md -->
|
||||
|
||||
# 🧱 fetchGisSystemStaticThunk.js
|
||||
|
||||
Lädt Geräte-/Systemdaten für alle Module aus dem Webservice.
|
||||
|
||||
## Verwendung
|
||||
|
||||
```js
|
||||
dispatch(fetchGisSystemStaticThunk());
|
||||
```
|
||||
|
||||
## Intern
|
||||
|
||||
- Ruft `fetchGisSystemStaticService()` auf
|
||||
16
docs/redux/thunks/webservice/fetchUserRightsThunk.md
Normal file
16
docs/redux/thunks/webservice/fetchUserRightsThunk.md
Normal file
@@ -0,0 +1,16 @@
|
||||
<!-- /docs/redux/thunks/webservice/fetchUserRightsThunk.md -->
|
||||
|
||||
# 🔐 fetchUserRightsThunk.js
|
||||
|
||||
Lädt Rechte des angemeldeten Nutzers vom Webservice.
|
||||
|
||||
## Verwendung
|
||||
|
||||
```js
|
||||
dispatch(fetchUserRightsThunk());
|
||||
```
|
||||
|
||||
## Intern
|
||||
|
||||
- Ruft `fetchUserRightsService()` auf
|
||||
- Fehlerbehandlung per `rejectWithValue(error.message)`
|
||||
Reference in New Issue
Block a user