Plug-in for the Canvas LMS theme app that removes the 'Inbox' funtionality.
- Removes the 'Inbox' menu item
- Redirects all calls to the Inbox back to the Dashboard
Using NPM:
npm install @artevelde-uas/canvas-lms-disable-inbox-plugin
Using Yarn:
yarn add @artevelde-uas/canvas-lms-disable-inbox-plugin
Just import the plug-in and add it to the Canvas app:
import { run, addPlugin } from '@artevelde-uas/canvas-lms-app';
import disableInboxPlugin from '@artevelde-uas/canvas-lms-disable-inbox-plugin';
addPlugin(disableInboxPlugin);
run();