From 168cf24288ed43e1f53ccd4c4c9e9552b8da00f3 Mon Sep 17 00:00:00 2001 From: 0x29a Date: Mon, 18 Sep 2023 10:51:21 +0200 Subject: [PATCH] fix: add limited_staff to allowedRoles Backported from [here](https://github.com/openedx/frontend-app-gradebook/pull/352). --- src/data/thunkActions/roles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/thunkActions/roles.js b/src/data/thunkActions/roles.js index 263f991a..760a3fbe 100644 --- a/src/data/thunkActions/roles.js +++ b/src/data/thunkActions/roles.js @@ -10,7 +10,7 @@ import { fetchGrades } from './grades'; import { fetchTracks } from './tracks'; import { fetchAssignmentTypes } from './assignmentTypes'; -export const allowedRoles = ['staff', 'instructor', 'eshe_instructor', 'support']; +export const allowedRoles = ['staff', 'limited_staff', 'instructor', 'eshe_instructor', 'support']; export const fetchRoles = () => ( (dispatch, getState) => {