-
Notifications
You must be signed in to change notification settings - Fork 4.3k
Sysadmin Dashboard ADR #23697
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
Merged
nasthagiri
merged 1 commit into
openedx:master
from
mitodl:pdpinch/sysadmin-dashboard-adr
May 21, 2020
Merged
Sysadmin Dashboard ADR #23697
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
46 changes: 46 additions & 0 deletions
46
lms/djangoapps/dashboard/decisions/0001-sysadmin-dashboard.rst
This file contains hidden or 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,46 @@ | ||||||
| 1. Sysadmin Dashboard | ||||||
| --------------------- | ||||||
|
|
||||||
| Status | ||||||
| ------ | ||||||
|
|
||||||
| Accepted | ||||||
|
|
||||||
| Context | ||||||
| ------- | ||||||
| When operating an Open edX installation, it is convenient to allow admins and course staff to perform some tasks from | ||||||
| the web browser instead of requiring access to django managment commands. These tasks include | ||||||
|
|
||||||
| - creating user accounts | ||||||
| - importing courses (from git) | ||||||
| - deleting courses | ||||||
| - gathering cross-course enrollment data | ||||||
|
|
||||||
| The SysAdmin Dashboard feature has remained functionally unchanged since 2015, but it has never been documented. | ||||||
| This ADR serves to captures the decisions that went into it, so that we may being the process of moving it out of | ||||||
| edx-platofrm and into a pluggable django app. | ||||||
|
|
||||||
| Decision | ||||||
| -------- | ||||||
|
|
||||||
| The users tab provides Web based user management (create and delete user accounts), a listing of courses loaded, | ||||||
| and user statistics. There is also a button to repair the external authentication map, a task relevant to open | ||||||
| edX installations using Shibboleth and certificate-based authentication. | ||||||
|
|
||||||
| The courses tabs manages adding/updating courses from git, deleting courses, and provides course listing information, | ||||||
| including commit hash, date and author for course imported from git. | ||||||
|
|
||||||
| The Staffing tab provides a view of staffing and enrollment in courses that include an option to download the data | ||||||
| as a csv. | ||||||
|
|
||||||
| The Gitlogs tab provides a view into the import log of courses from git repositories. It is convenient for allowing | ||||||
| course teams to see what may be wrong wit their xml. This is the only view that allows permits access by course | ||||||
| staff, so they can review their own course import logs. | ||||||
|
|
||||||
| Consequences | ||||||
| ------------ | ||||||
|
|
||||||
| The Sysadmin dashboard is little used outside of MIT and difficult to maintain. Many of its features have been | ||||||
| replicated elsewhere in edx-platform. It coudld be refactored as a pluggable app, but some of it's features rely on | ||||||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
| internal edX APIs. In a subsequent ADR, we will identify the APIs that would be necessary for extracting the Sysadmin | ||||||
| Dashboard. | ||||||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.