Skip to content

Commit 3784efb

Browse files
committed
feat: Add Instructor Dashboard
Add the Instructor Dashboard to the set of default apps we ship.
1 parent 220441e commit 3784efb

5 files changed

Lines changed: 84 additions & 55 deletions

File tree

package-lock.json

Lines changed: 78 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@
4343
"@edx/brand": "npm:@openedx/brand-openedx@^1.2.3",
4444
"@openedx/frontend-app-authn": "^1.0.0-alpha || 0.0.0-dev",
4545
"@openedx/frontend-app-learner-dashboard": "^1.0.0-alpha || 0.0.0-dev",
46+
"@openedx/frontend-app-instructor-dashboard": "^1.0.0-alpha || 0.0.0-dev",
4647
"@openedx/frontend-base": "^1.0.0-alpha || 0.0.0-dev"
4748
},
4849
"devDependencies": {

site.config.build.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { EnvironmentTypes, SiteConfig, footerApp, headerApp, shellApp } from '@openedx/frontend-base';
22
import { authnApp } from '@openedx/frontend-app-authn';
3+
import { instructorDashboardApp } from '@openedx/frontend-app-instructor-dashboard';
34
import { learnerDashboardApp } from '@openedx/frontend-app-learner-dashboard';
45
import homeApp from './src/homeApp';
56

@@ -20,6 +21,7 @@ const siteConfig: SiteConfig = {
2021
footerApp,
2122
authnApp,
2223
learnerDashboardApp,
24+
instructorDashboardApp,
2325
homeApp,
2426
],
2527
externalRoutes: [

site.config.dev.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { EnvironmentTypes, SiteConfig, footerApp, headerApp, shellApp } from '@openedx/frontend-base';
22
import { authnApp } from '@openedx/frontend-app-authn';
3+
import { instructorDashboardApp } from '@openedx/frontend-app-instructor-dashboard';
34
import { learnerDashboardApp } from '@openedx/frontend-app-learner-dashboard';
45
import homeApp from './src/homeApp';
56

@@ -20,6 +21,7 @@ const siteConfig: SiteConfig = {
2021
footerApp,
2122
authnApp,
2223
learnerDashboardApp,
24+
instructorDashboardApp,
2325
homeApp,
2426
],
2527
externalRoutes: [

src/site.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
@use '@openedx/frontend-base/shell/app.scss' as shell;
22
@use '@openedx/frontend-app-authn/app.scss' as authn;
33
@use '@openedx/frontend-app-learner-dashboard/app.scss' as learnerDashboard;
4+
@use '@openedx/frontend-app-instructor-dashboard/app.scss' as instructorDashboard;

0 commit comments

Comments
 (0)