Merge pull request #8131 from jumpserver/dev

v2.21.0
pull/8133/head v2.21.0
Jiangjie.Bai 2022-04-21 18:11:21 +08:00 committed by GitHub
commit a4be0ff2f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 2 deletions

View File

@ -4,7 +4,7 @@ from django.db.models.signals import m2m_changed
from django.dispatch import receiver from django.dispatch import receiver
from users.models import User, UserGroup from users.models import User, UserGroup
from assets.models import SystemUser from assets.models import Asset, SystemUser
from applications.models import Application from applications.models import Application
from common.utils import get_logger from common.utils import get_logger
from common.exceptions import M2MReverseNotAllowed from common.exceptions import M2MReverseNotAllowed
@ -48,6 +48,8 @@ def set_remote_app_asset_system_users_if_need(instance: ApplicationPermission, s
attrs = instance.applications.all().values_list('attrs', flat=True) attrs = instance.applications.all().values_list('attrs', flat=True)
asset_ids = [attr['asset'] for attr in attrs if attr.get('asset')] asset_ids = [attr['asset'] for attr in attrs if attr.get('asset')]
# 远程应用中资产可能在资产表里不存在
asset_ids = Asset.objects.filter(id__in=asset_ids).values_list('id', flat=True)
if not asset_ids: if not asset_ids:
return return

View File

@ -125,7 +125,8 @@ function csrfSafeMethod(method) {
} }
function setAjaxCSRFToken() { function setAjaxCSRFToken() {
const prefix = getCookie('SESSION_COOKIE_NAME_PREFIX', '') let prefix = getCookie('SESSION_COOKIE_NAME_PREFIX');
if (!prefix || [`""`, `''`].indexOf(prefix) > -1) { prefix = ''; }
var csrftoken = getCookie(`${prefix}csrftoken`); var csrftoken = getCookie(`${prefix}csrftoken`);
var sessionid = getCookie(`${prefix}sessionid`); var sessionid = getCookie(`${prefix}sessionid`);