ca56b4f8b4
This requires to have a correct setup when using these commands
17 lines
424 B
Python
17 lines
424 B
Python
import sys
|
|
|
|
from django.core.management.base import BaseCommand
|
|
|
|
|
|
class Command(BaseCommand):
|
|
"""
|
|
Overwrites the django auth's changepassword. It does not respect our cache and our
|
|
own implementation should be used instead.
|
|
"""
|
|
|
|
def run_from_argv(self, *args, **kwargs):
|
|
self.stderr.write(
|
|
"This command is disabled, use insecurepasswordchange instead."
|
|
)
|
|
sys.exit(1)
|