A queuing system built using Ember.js with Ember CLI. Allows students to 'queue up' for help, giving instructors a list of which students need help in the order they asked. This is a port of my ember-queue project to Ember CLI.
See an example at ember-queue.firebaseapp.com.
git clone
this repositorycd queue
npm install
bower install
ember server
- Visit http://localhost:4200
ember build
- As a student I want to ask for help so a teacher will come over. DONE
- As a teacher I want to see a list of students who have asked for help in the order they requested so I can keep track of who needs help. DONE
- As a student I want to see a confirmation message so I know my help ticket went through. DONE
- As a teacher, I want students to answer a series of questions before they can request so I am not overwhelmed by questions students can figure out on their own. DONE
- As a student, I want to be able to say I no longer need help so a teacher doesn't have to come over anymore. DONE
- As a teacher, I want to see statistics on how long tickets are staying open so I know if I'm reaching students in a timely manner. DONE
- As a teacher, I want to be able to navigate between the queue and statistics so I can easily switch back and forth. DONE