fixed generateAppleClientSecret call
This commit is contained in:
@@ -157,11 +157,6 @@
|
||||
|
||||
// Returns the current active editor language.
|
||||
function getEditorLang() {
|
||||
let schema = {};
|
||||
for (let collection of $collections) {
|
||||
schema[collection.name] = CommonHelper.getAllCollectionIdentifiers(collection);
|
||||
}
|
||||
|
||||
switch (language) {
|
||||
case "html":
|
||||
return htmlLang();
|
||||
@@ -177,10 +172,14 @@
|
||||
identifierQuotes: '`"',
|
||||
specialVar: "@:?$",
|
||||
}),
|
||||
schema: schema,
|
||||
upperCaseKeywords: true,
|
||||
});
|
||||
case "sql-select":
|
||||
let schema = {};
|
||||
for (let collection of $collections) {
|
||||
schema[collection.name] = CommonHelper.getAllCollectionIdentifiers(collection);
|
||||
}
|
||||
|
||||
return sql({
|
||||
// lightweight sql dialect with mostly SELECT statements keywords
|
||||
dialect: SQLDialect.define({
|
||||
|
||||
@@ -44,7 +44,7 @@
|
||||
isSubmitting = true;
|
||||
|
||||
try {
|
||||
const result = await ApiClient.generateAppleClientSecret(
|
||||
const result = await ApiClient.settings.generateAppleClientSecret(
|
||||
clientId,
|
||||
teamId,
|
||||
keyId,
|
||||
|
||||
Reference in New Issue
Block a user