Files
edx-platform/common/djangoapps/student
Kyle McCormick 3185dda123 fix: Rename send_activation_email task (step 3/3) (#26329)
The old name was
`student.send_activation_email`.

The new name is now
`common.djangoapps.student.tasks.send_activation_email`.

We no longer user the old task name,
so we can safely stop registering it with Celery
workers, without fear of dropping any lingering
tasks under the old name.
2021-02-03 11:10:01 -05:00
..
2021-02-03 15:47:18 +05:00
2021-02-03 15:29:53 +05:00
2021-02-03 17:01:52 +05:00
2021-02-03 15:29:53 +05:00
2021-02-03 15:29:53 +05:00
2021-02-03 15:29:53 +05:00
2021-02-03 15:29:53 +05:00
2021-02-03 15:29:53 +05:00
2021-02-03 15:29:53 +05:00
2021-02-03 15:29:53 +05:00
2020-03-13 15:14:37 -04:00
2021-02-03 15:29:53 +05:00
2019-12-30 10:35:30 -05:00
2019-12-30 12:25:38 -05:00

Status: Maintenance

Responsibilities
================
The Student app supplements Django's default user information with student-specific information like User Profiles and Enrollments. This has made it a catch all place for a lot of functionality that we want to move into more dedicated places. For instance, while the CourseEnrollment models remain in this app for now, most Enrollment related functionality has already moved to the Enrollment app.

If you are thinking of adding something here, strongly consider adding a new Django app instead. If you are extending something here, please consider extracting it into a separate app.

Intended responsibility: Student dashboard functionality.

Glossary
========


More Documentation
==================

Plugins
-------
Plugin Context view names (see ADR 0003-plugin-contexts.rst):
* "course_dashboard" -> student.views.dashboard.student_dashboard