refactoring
This commit is contained in:
@@ -1,2 +1,2 @@
|
|||||||
// /config/appVersion
|
// /config/appVersion
|
||||||
export const APP_VERSION = "1.1.171";
|
export const APP_VERSION = "1.1.172";
|
||||||
|
|||||||
@@ -1,3 +1,4 @@
|
|||||||
|
// /redux/slices/database/pois/addPoiSlice.js
|
||||||
import { createSlice } from "@reduxjs/toolkit";
|
import { createSlice } from "@reduxjs/toolkit";
|
||||||
import { addPoiThunk } from "../../../thunks/database/pois/addPoiThunk";
|
import { addPoiThunk } from "../../../thunks/database/pois/addPoiThunk";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /redux/slices/database/poiIconsDataSlice.js
|
// /redux/slices/database/pois/poiIconsDataSlice.js
|
||||||
import { createSlice } from "@reduxjs/toolkit";
|
import { createSlice } from "@reduxjs/toolkit";
|
||||||
import { fetchPoiIconsDataThunk } from "../../../thunks/database/pois/fetchPoiIconsDataThunk";
|
import { fetchPoiIconsDataThunk } from "../../../thunks/database/pois/fetchPoiIconsDataThunk";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /redux/slices/database/poiTypSlice.js
|
// /redux/slices/database/pois/poiTypSlice.js
|
||||||
import { createSlice } from "@reduxjs/toolkit";
|
import { createSlice } from "@reduxjs/toolkit";
|
||||||
import { fetchPoiTypThunk } from "../../../thunks/database/pois/fetchPoiTypThunk";
|
import { fetchPoiTypThunk } from "../../../thunks/database/pois/fetchPoiTypThunk";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /redux/slices/database/poiTypesSlice.js
|
// /redux/slices/database/pois/poiTypesSlice.js
|
||||||
import { createSlice, createAsyncThunk } from "@reduxjs/toolkit";
|
import { createSlice, createAsyncThunk } from "@reduxjs/toolkit";
|
||||||
|
|
||||||
// API-Abruf für POI-Typen
|
// API-Abruf für POI-Typen
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /redux/slices/database/gisLinesSlice.js
|
// /redux/slices/database/polylines/gisLinesSlice.js
|
||||||
import { createSlice } from "@reduxjs/toolkit";
|
import { createSlice } from "@reduxjs/toolkit";
|
||||||
import { fetchGisLinesThunk } from "../../../thunks/database/polylines/fetchGisLinesThunk";
|
import { fetchGisLinesThunk } from "../../../thunks/database/polylines/fetchGisLinesThunk";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /redux/thunks/database/deletePoiThunk.js
|
// /redux/thunks/database/pois/deletePoiThunk.js
|
||||||
|
|
||||||
import { createAsyncThunk } from "@reduxjs/toolkit";
|
import { createAsyncThunk } from "@reduxjs/toolkit";
|
||||||
import { deletePoiService } from "../../../../services/database/pois/deletePoiService";
|
import { deletePoiService } from "../../../../services/database/pois/deletePoiService";
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /redux/thunks/database/fetchPoiIconsDataThunk.js
|
// /redux/thunks/database/pois/fetchPoiIconsDataThunk.js
|
||||||
import { createAsyncThunk } from "@reduxjs/toolkit";
|
import { createAsyncThunk } from "@reduxjs/toolkit";
|
||||||
import { fetchPoiIconsDataService } from "../../../../services/database/pois/fetchPoiIconsDataService";
|
import { fetchPoiIconsDataService } from "../../../../services/database/pois/fetchPoiIconsDataService";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /redux/thunks/database/fetchPoiTypThunk.js
|
// /redux/thunks/database/pois/fetchPoiTypThunk.js
|
||||||
import { createAsyncThunk } from "@reduxjs/toolkit";
|
import { createAsyncThunk } from "@reduxjs/toolkit";
|
||||||
import { fetchPoiTypService } from "../../../../services/database/pois/fetchPoiTypService";
|
import { fetchPoiTypService } from "../../../../services/database/pois/fetchPoiTypService";
|
||||||
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /redux/thunks/database/updatePoiThunk.js
|
// /redux/thunks/database/pois/updatePoiThunk.js
|
||||||
|
|
||||||
import { createAsyncThunk } from "@reduxjs/toolkit";
|
import { createAsyncThunk } from "@reduxjs/toolkit";
|
||||||
import { updatePoiService } from "../../../../services/database/pois/updatePoiService";
|
import { updatePoiService } from "../../../../services/database/pois/updatePoiService";
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
// /redux/thunks/database/fetchGisLinesThunk.js
|
// /redux/thunks/database/polylines/fetchGisLinesThunk.js
|
||||||
import { createAsyncThunk } from "@reduxjs/toolkit";
|
import { createAsyncThunk } from "@reduxjs/toolkit";
|
||||||
import { fetchGisLinesService } from "../../../../services/database/polylines/fetchGisLinesService";
|
import { fetchGisLinesService } from "../../../../services/database/polylines/fetchGisLinesService";
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user