Allow for course subscriptions

This commit is contained in:
Arjun Singh
2012-09-13 16:00:48 -07:00
parent 5b9967e5a0
commit 8bad4c8dbc

View File

@@ -8,7 +8,7 @@ class User(models.Model):
accessible_fields = ['username', 'email', 'follower_ids', 'upvoted_ids', 'downvoted_ids',
'id', 'external_id', 'subscribed_user_ids', 'children', 'course_id',
'subscribed_thread_ids', 'subscribed_commentable_ids',
'threads_count', 'comments_count', 'default_sort_key'
'subscribed_course_ids', 'threads_count', 'comments_count', 'default_sort_key'
]
updatable_fields = ['username', 'external_id', 'email', 'default_sort_key']