diff --git a/common/djangoapps/student/migrations/0032_removed_logout_view_configuration.py b/common/djangoapps/student/migrations/0032_removed_logout_view_configuration.py new file mode 100644 index 000000000000..02d52a833310 --- /dev/null +++ b/common/djangoapps/student/migrations/0032_removed_logout_view_configuration.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.29 on 2020-03-25 14:28 +from __future__ import unicode_literals + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('student', '0031_auto_20200317_1122'), + ] + + operations = [ + migrations.RemoveField( + model_name='logoutviewconfiguration', + name='changed_by', + ), + migrations.DeleteModel( + name='LogoutViewConfiguration', + ), + ] diff --git a/common/djangoapps/student/models.py b/common/djangoapps/student/models.py index 905e86bbe749..e421c4950cdb 100644 --- a/common/djangoapps/student/models.py +++ b/common/djangoapps/student/models.py @@ -2893,21 +2893,6 @@ def get_user_attribute(cls, user, name): return None -@python_2_unicode_compatible -class LogoutViewConfiguration(ConfigurationModel): - """ - DEPRECATED: Configuration for the logout view. - - .. no_pii: - """ - - def __str__(self): - """ - Unicode representation of the instance. - """ - return u'Logout view configuration: {enabled}'.format(enabled=self.enabled) - - class AccountRecoveryManager(models.Manager): """ Custom Manager for AccountRecovery model