Skip to content

Commit

Permalink
fix: add eshe_instructor to allowedRoles
Browse files Browse the repository at this point in the history
eSHE Instructors can't view the gradebook without this.
  • Loading branch information
0x29a authored and ArturGaspar committed Jul 10, 2024
1 parent 3e76a4e commit aa3e4a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/thunkActions/roles.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import { fetchGrades } from './grades';
import { fetchTracks } from './tracks';
import { fetchAssignmentTypes } from './assignmentTypes';

export const allowedRoles = ['staff', 'limited_staff', 'instructor', 'support'];
export const allowedRoles = ['staff', 'limited_staff', 'instructor', 'eshe_instructor', 'support'];

export const fetchRoles = () => (
(dispatch, getState) => {
Expand Down

0 comments on commit aa3e4a9

Please sign in to comment.