While inspecting network tab of a course outline (Studio) I noticed that there was a request /api/contentstore/v1/home/courses which fetch all courses in my instance.
I think the request was triggered by this code
useEffect(() => {
dispatch(fetchStudioHomeData());
}, []);
Does anyone know the reason of it?
import React, { useEffect } from 'react';
import PropTypes from 'prop-types';
import { useDispatch, useSelector } from 'react-redux';
import {
useLocation,
} from 'react-router-dom';
import { StudioFooter } from '@edx/frontend-component-footer';
import Header from './header';
import { fetchCourseDetail, fetchWaffleFlags } from './data/thunks';
import { useModel } from './generic/model-store';
import NotFoundAlert from './generic/NotFoundAlert';
import PermissionDeniedAlert from './generic/PermissionDeniedAlert';
import { fetchStudioHomeData } from './studio-home/data/thunks';
import { getCourseAppsApiStatus } from './pages-and-resources/data/selectors';
import { RequestStatus } from './data/constants';
import Loading from './generic/Loading';
const CourseAuthoringPage = ({ courseId, children }) => {
const dispatch = useDispatch();
This file has been truncated. show original
I can replicate that. Probably worth filing an issue in that repo – I don’t see an existing one.
I don’t know if the code was intended or not, still I opened an issue in the repo.