8 lines
180 B
Python
8 lines
180 B
Python
from __future__ import unicode_literals
|
|
|
|
from django.core import management
|
|
|
|
|
|
def handler_purge_permissions(**kwargs):
|
|
management.call_command(command_name='purgepermissions')
|