mirror of https://github.com/jumpserver/jumpserver
Merge branch 'master' into dev
commit
2cb5876d1a
|
@ -5,6 +5,7 @@ from django.shortcuts import get_object_or_404
|
||||||
from rest_framework.views import APIView, Response
|
from rest_framework.views import APIView, Response
|
||||||
from rest_framework.generics import ListAPIView, get_object_or_404, RetrieveUpdateAPIView
|
from rest_framework.generics import ListAPIView, get_object_or_404, RetrieveUpdateAPIView
|
||||||
from rest_framework import viewsets
|
from rest_framework import viewsets
|
||||||
|
from rest_framework.pagination import LimitOffsetPagination
|
||||||
|
|
||||||
from common.utils import set_or_append_attr_bulk, get_object_or_none
|
from common.utils import set_or_append_attr_bulk, get_object_or_none
|
||||||
from users.permissions import IsValidUser, IsSuperUser, IsSuperUserOrAppUser
|
from users.permissions import IsValidUser, IsSuperUser, IsSuperUserOrAppUser
|
||||||
|
@ -19,9 +20,12 @@ class AssetPermissionViewSet(viewsets.ModelViewSet):
|
||||||
"""
|
"""
|
||||||
资产授权列表的增删改查api
|
资产授权列表的增删改查api
|
||||||
"""
|
"""
|
||||||
|
filter_fields = ("name",)
|
||||||
|
search_fields = filter_fields
|
||||||
queryset = AssetPermission.objects.all()
|
queryset = AssetPermission.objects.all()
|
||||||
serializer_class = serializers.AssetPermissionCreateUpdateSerializer
|
serializer_class = serializers.AssetPermissionCreateUpdateSerializer
|
||||||
permission_classes = (IsSuperUser,)
|
permission_classes = (IsSuperUser,)
|
||||||
|
pagination_class = LimitOffsetPagination
|
||||||
|
|
||||||
def get_serializer_class(self):
|
def get_serializer_class(self):
|
||||||
if self.action in ("list", 'retrieve'):
|
if self.action in ("list", 'retrieve'):
|
||||||
|
|
|
@ -208,7 +208,7 @@ function initTable() {
|
||||||
select: {},
|
select: {},
|
||||||
op_html: $('#actions').html()
|
op_html: $('#actions').html()
|
||||||
};
|
};
|
||||||
table = jumpserver.initDataTable(options);
|
table = jumpserver.initServerSideDataTable(options);
|
||||||
return table
|
return table
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,6 +4,7 @@ from collections import OrderedDict
|
||||||
import logging
|
import logging
|
||||||
import os
|
import os
|
||||||
import uuid
|
import uuid
|
||||||
|
import copy
|
||||||
|
|
||||||
from django.core.cache import cache
|
from django.core.cache import cache
|
||||||
from django.shortcuts import get_object_or_404, redirect
|
from django.shortcuts import get_object_or_404, redirect
|
||||||
|
@ -310,6 +311,7 @@ class SessionReplayViewSet(viewsets.ViewSet):
|
||||||
def retrieve(self, request, *args, **kwargs):
|
def retrieve(self, request, *args, **kwargs):
|
||||||
session_id = kwargs.get('pk')
|
session_id = kwargs.get('pk')
|
||||||
self.session = get_object_or_404(Session, id=session_id)
|
self.session = get_object_or_404(Session, id=session_id)
|
||||||
|
|
||||||
# 新版本和老版本的文件后缀不同
|
# 新版本和老版本的文件后缀不同
|
||||||
session_path = self.get_session_path() # 存在外部存储上的路径
|
session_path = self.get_session_path() # 存在外部存储上的路径
|
||||||
local_path = self.get_local_path()
|
local_path = self.get_local_path()
|
||||||
|
|
|
@ -228,7 +228,7 @@ Luna 已改为纯前端,需要 Nginx 来运行访问
|
||||||
-p 8081:8080 -v /opt/guacamole/key:/config/guacamole/key \
|
-p 8081:8080 -v /opt/guacamole/key:/config/guacamole/key \
|
||||||
-e JUMPSERVER_KEY_DIR=/config/guacamole/key \
|
-e JUMPSERVER_KEY_DIR=/config/guacamole/key \
|
||||||
-e JUMPSERVER_SERVER=http://<填写本机的IP地址>:8080 \
|
-e JUMPSERVER_SERVER=http://<填写本机的IP地址>:8080 \
|
||||||
registry.jumpserver.org/public/guacamole:1.0.0
|
registry.jumpserver.org/public/guacamole:latest
|
||||||
|
|
||||||
这里所需要注意的是 guacamole 暴露出来的端口是 8081,若与主机上其他端口冲突请自定义一下。
|
这里所需要注意的是 guacamole 暴露出来的端口是 8081,若与主机上其他端口冲突请自定义一下。
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue