Skip to content

Commit

Permalink
fix: remove legacy account requests
Browse files Browse the repository at this point in the history
  • Loading branch information
jakeaturner authored and ethanaturner committed Sep 2, 2023
1 parent 617632e commit e2ed02e
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 1,455 deletions.
4 changes: 0 additions & 4 deletions client/src/Conductor.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ import { useSelector } from 'react-redux';
import AnonRoute from './components/util/AnonRoute';
import PrivateRoute from './components/util/PrivateRoute';

const InstructorVerificationRequest = lazy(() => import('./screens/conductor/InstructorVerificationRequest'));
const AccountRequests = lazy(() => import('./screens/conductor/controlpanel/AccountRequests'));
const AccountSettings = lazy(() => import('./screens/conductor/AccountSettings'));
const AdoptionReports = lazy(() => import('./screens/conductor/controlpanel/AdoptionReports'));
const AnalyticsCourseView = lazy(() => import('./screens/conductor/analytics/AnalyticsCourseView'));
Expand Down Expand Up @@ -85,7 +83,6 @@ const Conductor = () => {
<PrivateRoute exact path='/analytics/:courseID/:pane?/:settingsPane?' component={AnalyticsCourseView} />
<PrivateRoute exact path='/account/:activePane?' component={AccountSettings} />
<PrivateRoute exact path='/controlpanel' component={ControlPanel} />
<PrivateRoute exact path='/controlpanel/accountrequests' component={AccountRequests} />
<PrivateRoute exact path='/controlpanel/adoptionreports' component={AdoptionReports} />
<PrivateRoute exact path='/controlpanel/analyticsrequests' component={AnalyticsRequests} />
<PrivateRoute exact path='/controlpanel/booksmanager' component={BooksManager} />
Expand All @@ -107,7 +104,6 @@ const Conductor = () => {
<PrivateRoute exact path='/events/:eventID/:status?' component={EventRegistration} unAuthSrc="eventregistration" />
{(org.orgID === 'libretexts') && [
<Route exact path='/harvestrequest' key='harvestrequest' component={HarvestRequest} />,
<PrivateRoute exact path="/verification/instructor" key="instructorverifreq" component={InstructorVerificationRequest} unAuthSrc="accountrequest" />
]}
<Route exact path='/peerreview/:id' component={PeerReviewPage} />

Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit e2ed02e

Please sign in to comment.