Remove useless Graph APIs
This commit is contained in:
parent
a5ce39674b
commit
fdb5e01ec8
|
@ -35,13 +35,6 @@ export function getFactorset(owner, name) {
|
||||||
}).then(res => res.json());
|
}).then(res => res.json());
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getFactorsetGraph(owner, name, clusterNumber, distanceLimit) {
|
|
||||||
return fetch(`${Setting.ServerUrl}/api/get-factorset-graph?id=${owner}/${encodeURIComponent(name)}&clusterNumber=${clusterNumber}&distanceLimit=${distanceLimit}`, {
|
|
||||||
method: "GET",
|
|
||||||
credentials: "include",
|
|
||||||
}).then(res => res.json());
|
|
||||||
}
|
|
||||||
|
|
||||||
export function updateFactorset(owner, name, factorset) {
|
export function updateFactorset(owner, name, factorset) {
|
||||||
const newFactorset = Setting.deepCopy(factorset);
|
const newFactorset = Setting.deepCopy(factorset);
|
||||||
return fetch(`${Setting.ServerUrl}/api/update-factorset?id=${owner}/${encodeURIComponent(name)}`, {
|
return fetch(`${Setting.ServerUrl}/api/update-factorset?id=${owner}/${encodeURIComponent(name)}`, {
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
// Copyright 2023 The casbin Authors. All Rights Reserved.
|
// Copyright 2023 The casbin Authors. All Rights Reserved.
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
// you may not use this file except in compliance with the License.
|
// you may not use this file except in compliance with the License.
|
||||||
// You may obtain a copy of the License at
|
// You may obtain a copy of the License at
|
||||||
//
|
//
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
//
|
//
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
import * as Setting from "../Setting";
|
import * as Setting from "../Setting";
|
||||||
|
|
||||||
export function getGlobalProviders() {
|
export function getGlobalProviders() {
|
||||||
|
@ -35,13 +35,6 @@ export function getProvider(owner, name) {
|
||||||
}).then(res => res.json());
|
}).then(res => res.json());
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getProviderGraph(owner, name, clusterNumber, distanceLimit) {
|
|
||||||
return fetch(`${Setting.ServerUrl}/api/get-provider-graph?id=${owner}/${encodeURIComponent(name)}&clusterNumber=${clusterNumber}&distanceLimit=${distanceLimit}`, {
|
|
||||||
method: "GET",
|
|
||||||
credentials: "include",
|
|
||||||
}).then(res => res.json());
|
|
||||||
}
|
|
||||||
|
|
||||||
export function updateProvider(owner, name, provider) {
|
export function updateProvider(owner, name, provider) {
|
||||||
const newProvider = Setting.deepCopy(provider);
|
const newProvider = Setting.deepCopy(provider);
|
||||||
return fetch(`${Setting.ServerUrl}/api/update-provider?id=${owner}/${encodeURIComponent(name)}`, {
|
return fetch(`${Setting.ServerUrl}/api/update-provider?id=${owner}/${encodeURIComponent(name)}`, {
|
||||||
|
|
|
@ -35,13 +35,6 @@ export function getVector(owner, name) {
|
||||||
}).then(res => res.json());
|
}).then(res => res.json());
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getVectorGraph(owner, name, clusterNumber, distanceLimit) {
|
|
||||||
return fetch(`${Setting.ServerUrl}/api/get-vector-graph?id=${owner}/${encodeURIComponent(name)}&clusterNumber=${clusterNumber}&distanceLimit=${distanceLimit}`, {
|
|
||||||
method: "GET",
|
|
||||||
credentials: "include",
|
|
||||||
}).then(res => res.json());
|
|
||||||
}
|
|
||||||
|
|
||||||
export function updateVector(owner, name, vector) {
|
export function updateVector(owner, name, vector) {
|
||||||
const newVector = Setting.deepCopy(vector);
|
const newVector = Setting.deepCopy(vector);
|
||||||
return fetch(`${Setting.ServerUrl}/api/update-vector?id=${owner}/${encodeURIComponent(name)}`, {
|
return fetch(`${Setting.ServerUrl}/api/update-vector?id=${owner}/${encodeURIComponent(name)}`, {
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
// Copyright 2023 The casbin Authors. All Rights Reserved.
|
// Copyright 2023 The casbin Authors. All Rights Reserved.
|
||||||
//
|
//
|
||||||
// Licensed under the Apache License, Version 2.0 (the "License");
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
// you may not use this file except in compliance with the License.
|
// you may not use this file except in compliance with the License.
|
||||||
// You may obtain a copy of the License at
|
// You may obtain a copy of the License at
|
||||||
//
|
//
|
||||||
// http://www.apache.org/licenses/LICENSE-2.0
|
// http://www.apache.org/licenses/LICENSE-2.0
|
||||||
//
|
//
|
||||||
// Unless required by applicable law or agreed to in writing, software
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
// distributed under the License is distributed on an "AS IS" BASIS,
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
// See the License for the specific language governing permissions and
|
// See the License for the specific language governing permissions and
|
||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
|
|
||||||
import * as Setting from "../Setting";
|
import * as Setting from "../Setting";
|
||||||
|
|
||||||
export function getGlobalVideos() {
|
export function getGlobalVideos() {
|
||||||
|
@ -35,13 +35,6 @@ export function getVideo(owner, name) {
|
||||||
}).then(res => res.json());
|
}).then(res => res.json());
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getVideoGraph(owner, name, clusterNumber, distanceLimit) {
|
|
||||||
return fetch(`${Setting.ServerUrl}/api/get-video-graph?id=${owner}/${encodeURIComponent(name)}&clusterNumber=${clusterNumber}&distanceLimit=${distanceLimit}`, {
|
|
||||||
method: "GET",
|
|
||||||
credentials: "include",
|
|
||||||
}).then(res => res.json());
|
|
||||||
}
|
|
||||||
|
|
||||||
export function updateVideo(owner, name, video) {
|
export function updateVideo(owner, name, video) {
|
||||||
const newVideo = Setting.deepCopy(video);
|
const newVideo = Setting.deepCopy(video);
|
||||||
return fetch(`${Setting.ServerUrl}/api/update-video?id=${owner}/${encodeURIComponent(name)}`, {
|
return fetch(`${Setting.ServerUrl}/api/update-video?id=${owner}/${encodeURIComponent(name)}`, {
|
||||||
|
|
Loading…
Reference in New Issue