mirror of
https://github.com/jumpserver/jumpserver.git
synced 2025-12-16 00:52:41 +00:00
Compare commits
2 Commits
pr@dev@top
...
v2.25.1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5e7a35bd9a | ||
|
|
cd5d860fb4 |
@@ -79,6 +79,9 @@ function doRequestAuth() {
|
|||||||
requestApi({
|
requestApi({
|
||||||
url: url,
|
url: url,
|
||||||
method: "GET",
|
method: "GET",
|
||||||
|
headers: {
|
||||||
|
"X-JMS-LOGIN-TYPE": "W"
|
||||||
|
},
|
||||||
success: function (data) {
|
success: function (data) {
|
||||||
if (!data.error && data.msg === 'ok') {
|
if (!data.error && data.msg === 'ok') {
|
||||||
window.onbeforeunload = function(){};
|
window.onbeforeunload = function(){};
|
||||||
@@ -98,9 +101,6 @@ function doRequestAuth() {
|
|||||||
},
|
},
|
||||||
error: function (text, data) {
|
error: function (text, data) {
|
||||||
},
|
},
|
||||||
beforeSend: function(request) {
|
|
||||||
request.setRequestHeader("X-JMS-LOGIN-TYPE", "W");
|
|
||||||
},
|
|
||||||
flash_message: false, // 是否显示flash消息
|
flash_message: false, // 是否显示flash消息
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -270,13 +270,13 @@ function requestApi(props) {
|
|||||||
if (typeof(dataBody) === "object") {
|
if (typeof(dataBody) === "object") {
|
||||||
dataBody = JSON.stringify(dataBody)
|
dataBody = JSON.stringify(dataBody)
|
||||||
}
|
}
|
||||||
var beforeSend = props.beforeSend || function (request) {}
|
var headers = props.headers || {}
|
||||||
|
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: props.url,
|
url: props.url,
|
||||||
type: props.method || "PATCH",
|
type: props.method || "PATCH",
|
||||||
|
headers: headers,
|
||||||
data: dataBody,
|
data: dataBody,
|
||||||
beforeSend: beforeSend,
|
|
||||||
contentType: props.content_type || "application/json; charset=utf-8",
|
contentType: props.content_type || "application/json; charset=utf-8",
|
||||||
dataType: props.data_type || "json"
|
dataType: props.data_type || "json"
|
||||||
}).done(function (data, textStatue, jqXHR) {
|
}).done(function (data, textStatue, jqXHR) {
|
||||||
|
|||||||
@@ -2,4 +2,4 @@
|
|||||||
apt install \
|
apt install \
|
||||||
g++ make iputils-ping default-libmysqlclient-dev libpq-dev \
|
g++ make iputils-ping default-libmysqlclient-dev libpq-dev \
|
||||||
libffi-dev libldap2-dev libsasl2-dev sshpass pkg-config libxml2-dev \
|
libffi-dev libldap2-dev libsasl2-dev sshpass pkg-config libxml2-dev \
|
||||||
libxmlsec1-dev libxmlsec1-openssl libaio-dev freetds-dev
|
libxmlsec1-dev libxmlsec1-openssl libaio-dev openssh-client freetds-dev
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
yum -y install \
|
yum -y install \
|
||||||
gcc-c++ sshpass mariadb-devel openldap-devel libxml2-devel \
|
gcc-c++ sshpass mariadb-devel openldap-devel openssh-clients libxml2-devel \
|
||||||
xmlsec1-devel xmlsec1-openssl-devel libtool-ltdl-devel \
|
xmlsec1-devel xmlsec1-openssl-devel libtool-ltdl-devel \
|
||||||
postgresql-devel
|
postgresql-devel
|
||||||
|
|||||||
Reference in New Issue
Block a user