-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
1 parent
560eb09
commit 0b8966c
Showing
24 changed files
with
660 additions
and
288 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
...es-help/instructor-help-page/instructor-help-courses-section/courses-section-questions.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
/** | ||
* Unique identifiers for each question in the courses section of instructor help page | ||
*/ | ||
export enum CoursesSectionQuestions { | ||
/** | ||
* How do I add students to a course? | ||
*/ | ||
COURSE_ADD_STUDENTS = 'course-add-students', | ||
|
||
/** | ||
* Is there a size limit for a course? | ||
*/ | ||
SIZE_LIMIT = 'size-limit', | ||
|
||
/** | ||
* What should I do if my course doesn’t have teams? | ||
*/ | ||
NO_TEAMS = 'no-teams', | ||
|
||
/** | ||
* What are sections meant for? | ||
*/ | ||
SECTIONS = 'sections', | ||
|
||
/** | ||
* How do I enroll students into sections? | ||
*/ | ||
ENROLL_SECTIONS = 'enroll-sections', | ||
|
||
/** | ||
* How do I add instructors to my course? | ||
*/ | ||
COURSE_ADD_INSTRUCTOR = 'course-add-instructor', | ||
|
||
/** | ||
* How do I edit the information of an instructor in my course? | ||
*/ | ||
COURSE_EDIT_INSTRUCTOR = 'course-edit-instructor', | ||
|
||
/** | ||
* How do I set an instructor's access level? | ||
*/ | ||
COURSE_INSTRUCTOR_ACCESS = 'course-instructor-access', | ||
|
||
/** | ||
* How do I set custom privileges for an instructor? | ||
*/ | ||
PRIVILEGES = 'privileges', | ||
|
||
/** | ||
* How do I view a list of students in a course? | ||
*/ | ||
COURSE_VIEW_STUDENTS = 'course-view-students', | ||
|
||
/** | ||
* How do I change a student's section? | ||
*/ | ||
CHANGE_SECTION = 'change-section', | ||
|
||
/** | ||
* What should I do if a student says his/her courses have disappeared from the system? | ||
*/ | ||
DISAPPEARED_COURSE = 'disappeared-course', | ||
|
||
/** | ||
* How do I delete students from a course? | ||
*/ | ||
DEL_STUDENTS = 'del-students', | ||
|
||
/** | ||
* How do I archive a course? | ||
*/ | ||
COURSE_ARCHIVE = 'course-archive', | ||
|
||
/** | ||
* How do I view courses I have archived? | ||
*/ | ||
COURSE_VIEW_ARCHIVED = 'course-view-archived', | ||
|
||
/** | ||
* How do I unarchive an archived course? | ||
*/ | ||
COURSE_UNARCHIVE = 'course-unarchive', | ||
|
||
/** | ||
* How do I view courses I have deleted? | ||
*/ | ||
COURSE_VIEW_DELETED = 'course-view-deleted', | ||
|
||
/** | ||
* How do I restore a deleted course? | ||
*/ | ||
COURSE_RESTORE = 'course-restore', | ||
|
||
/** | ||
* How do I permanently delete a course? | ||
*/ | ||
PERM_DEL = 'perm-del', | ||
|
||
/** | ||
* How do I restore/delete all courses from Recycle Bin? | ||
*/ | ||
RESTORE_ALL = 'restore-all', | ||
} |
122 changes: 61 additions & 61 deletions
122
...-help-page/instructor-help-courses-section/instructor-help-courses-section.component.html
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.