mirror of
https://github.com/bluewave-labs/Checkmate.git
synced 2025-03-31 22:10:17 +00:00
Merge pull request #897 from bluewave-labs/fix/settings
removed console logs, removed permission check for getting settings
This commit is contained in:
@ -47,7 +47,6 @@ const AdvancedSettings = ({ isAdmin }) => {
|
||||
const getSettings = async () => {
|
||||
const action = await dispatch(getAppSettings({ authToken }));
|
||||
if (action.payload.success) {
|
||||
console.log(action.payload.data);
|
||||
setLocalSettings(action.payload.data);
|
||||
} else {
|
||||
createToast({ body: "Failed to get settings" });
|
||||
|
@ -10,7 +10,9 @@ class NetworkService {
|
||||
this.setBaseUrl(baseURL);
|
||||
this.unsubscribe = store.subscribe(() => {
|
||||
const state = store.getState();
|
||||
baseURL = state.settings.apiBaseUrl || BASE_URL;
|
||||
if (state.settings.apiBaseUrl) {
|
||||
baseURL = state.settings.apiBaseUrl;
|
||||
}
|
||||
this.setBaseUrl(baseURL);
|
||||
});
|
||||
this.axiosInstance.interceptors.response.use(
|
||||
|
@ -3,7 +3,7 @@ const settingsController = require("../controllers/settingsController");
|
||||
const { isAllowed } = require("../middleware/isAllowed");
|
||||
const Monitor = require("../models/Monitor");
|
||||
|
||||
router.get("/", isAllowed(["superadmin"]), settingsController.getAppSettings);
|
||||
router.get("/", settingsController.getAppSettings);
|
||||
router.put(
|
||||
"/",
|
||||
isAllowed(["superadmin"]),
|
||||
|
Reference in New Issue
Block a user