Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates on the frontends with a questions category and students /instructor default group #10

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/install.js
Original file line number Diff line number Diff line change
Expand Up @@ -440,12 +440,12 @@ async function createStudents() {

async function createInstructors() {
const groups = require('./groups');
const exists = await groups.exists('instructors');
const exists = await groups.exists('Instructors');
if (exists) {
winston.info('Instructors group found, skipping creation!');
} else {
await groups.create({
name: 'instructors',
name: 'Instructors',
userTitle: 'Instructor',
description: 'Cool instructors are here',
hidden: 0,
Expand Down
Loading
Loading