fix(authentication): mode/datasource routes must be marked private so they can be protected via authentication. (#3178)

This commit is contained in:
Joe Boccanfuso 2023-02-16 13:10:08 -05:00 committed by GitHub
parent 94bb4c7d42
commit b67c7b23e8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -68,6 +68,7 @@ export default function buildModeRoutes({
routes.push({
path,
children,
private: true,
});
});