Push notifications was only ever setup to connect to Parse.com a service that has been discontinued. Since we haven't replaced the functionality for a few years now, remove this dead code. In cms/templates/js/course_info_update.underscore we're allowing content to not be escaped because this is by design according to the tests. Long term there should be a better fix for this but for now this is intended behavior.
13 lines
291 B
Python
13 lines
291 B
Python
"""
|
|
Admin site bindings for contentstore
|
|
"""
|
|
|
|
from __future__ import absolute_import
|
|
|
|
from config_models.admin import ConfigurationModelAdmin
|
|
from django.contrib import admin
|
|
|
|
from contentstore.models import VideoUploadConfig
|
|
|
|
admin.site.register(VideoUploadConfig, ConfigurationModelAdmin)
|