mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-06-11 07:54:53 +00:00
* [Update] 优化性能 * [Update] 修改assets * [Update] 优化处理 * [Update] Youhua * [Update] 修改ungroup * [Update] 修改perms的api地址,去掉sysuser adminuser的可连接性 * [Update] 修改perms urls兼容 * [Update] 修改分类 * [Update] 修改信号 * [Update] 优化获取授权资产 * [Update] 添加注释 (#2928) * [update] 去掉nodes 的部分字段 * [Update] 删除不用的代码 * [Update] 拆分users * [Update] 修改用户的属性
13 lines
308 B
Python
13 lines
308 B
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
from django.http import HttpResponse
|
|
from django.utils.encoding import iri_to_uri
|
|
|
|
|
|
class HttpResponseTemporaryRedirect(HttpResponse):
|
|
status_code = 307
|
|
|
|
def __init__(self, redirect_to):
|
|
HttpResponse.__init__(self)
|
|
self['Location'] = iri_to_uri(redirect_to)
|