Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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',
),
]
15 changes: 0 additions & 15 deletions common/djangoapps/student/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down