diff --git a/config/custom-environment-variables.json5 b/config/custom-environment-variables.json5 index 26e74a0..2ab0ab8 100644 --- a/config/custom-environment-variables.json5 +++ b/config/custom-environment-variables.json5 @@ -78,7 +78,4 @@ }, apiToken: "FENSAK_GITHUB_TOKEN", }, - bitbucket: { - oauthConsumerID: "FENSAK_BITBUCKET_OAUTH_CONSUMER_ID", - } } diff --git a/config/default.json5 b/config/default.json5 index d3a4c9a..dbc8c39 100644 --- a/config/default.json5 +++ b/config/default.json5 @@ -123,12 +123,4 @@ // the GitHub app configurations are used). apiToken: "", }, - - /** - * Settings/Secrets related to interacting with BitBucket. - */ - bitbucket: { - // The OAuth consumer ID to link to the BitBucket Add-on. - oauthConsumerID: "", - } } diff --git a/web/atlassian_connect.ts b/web/atlassian_connect.ts index beab1e7..cc0434a 100644 --- a/web/atlassian_connect.ts +++ b/web/atlassian_connect.ts @@ -8,7 +8,6 @@ import { getBitBucketAppKey } from "../bbstd/mod.ts"; const appEnv = config.get("env"); const appURL = config.get("appURL"); const dashboardAppURL = config.get("dashboardAppURL"); -const oauthConsumerID = config.get("bitbucket.oauthConsumerID"); /** * The handler function for serving the Atlassian Connect App descriptor. @@ -81,9 +80,6 @@ export function atlassianConnectJSON(ctx: Context): void { key: "postinstallredirect", url: dashboardAppURL, }, - oauthConsumer: { - clientId: oauthConsumerID, - }, }, };