jumpserver/apps/users/tasks.py

12 lines
190 B
Python
Raw Normal View History

2017-12-04 12:15:47 +00:00
# -*- coding: utf-8 -*-
#
2016-11-10 15:54:21 +00:00
from celery import shared_task
from .utils import write_login_log
@shared_task
def write_login_log_async(*args, **kwargs):
2016-11-11 01:48:47 +00:00
write_login_log(*args, **kwargs)