Minor sdk update
This commit is contained in:
@@ -134,7 +134,7 @@ const FileCategoryInput = (props) => {
|
||||
|
||||
|
||||
const Admin = (props) => {
|
||||
const { globalUrl, userdata, serverside, checkLogin } = props;
|
||||
const { globalUrl, userdata, serverside, checkLogin, notifications, setNotifications, } = props;
|
||||
|
||||
var to_be_copied = "";
|
||||
const classes = useStyles();
|
||||
@@ -2836,6 +2836,8 @@ If you're interested, please let me know a time that works for you, or set up a
|
||||
checkLogin={checkLogin}
|
||||
setAdminTab={setAdminTab}
|
||||
setCurTab={setCurTab}
|
||||
notifications={notifications}
|
||||
setNotifications={setNotifications}
|
||||
/>
|
||||
: adminTab === 3 ?
|
||||
<Billing
|
||||
|
||||
@@ -15628,7 +15628,7 @@ const AngularWorkflow = (defaultprops) => {
|
||||
marginBottom: "auto",
|
||||
}}
|
||||
>
|
||||
<b>{data.action.label}</b>
|
||||
<b>{data.action.label.replaceAll("_", " ")}</b>
|
||||
</div>
|
||||
<div style={{ fontSize: 14 }}>
|
||||
<Typography variant="body2" color="textSecondary">
|
||||
|
||||
@@ -2511,10 +2511,16 @@ const AppCreator = (defaultprops) => {
|
||||
scheme: "basic",
|
||||
};
|
||||
} else if (authenticationOption === "Oauth2") {
|
||||
console.log("oauth2: ", parameterName)
|
||||
console.log("oauth2: ", parameterName)
|
||||
var newparamName = parameterName.replaceAll('"', "");
|
||||
newparamName = newparamName.replaceAll("'", "");
|
||||
|
||||
// FIXME - this is a hack to get around the fact that the oauth2
|
||||
// flow is not properly defined
|
||||
if (oauth2Type === "application") {
|
||||
newparamName = ""
|
||||
}
|
||||
|
||||
//parameterName, parameterValue, revocationUrl
|
||||
data.components.securitySchemes["Oauth2"] = {
|
||||
type: "oauth2",
|
||||
@@ -2945,7 +2951,7 @@ const AppCreator = (defaultprops) => {
|
||||
color="textSecondary"
|
||||
style={{ marginTop: 10 }}
|
||||
>
|
||||
Base Authorization URL for Oauth2
|
||||
Authorization URL for Oauth2
|
||||
</Typography>
|
||||
<TextField
|
||||
required
|
||||
|
||||
@@ -403,7 +403,7 @@ const Apps = (props) => {
|
||||
return response.json();
|
||||
})
|
||||
.then((responseJson) => {
|
||||
//console.log("Apps: ", responseJson)
|
||||
console.log("Apps: ", responseJson)
|
||||
//responseJson = sortByKey(responseJson, "large_image")
|
||||
//responseJson = sortByKey(responseJson, "is_valid")
|
||||
//setFilteredApps(responseJson.filter(app => !internalIds.includes(app.name) && !(!app.activated && app.generated)))
|
||||
|
||||
Reference in New Issue
Block a user