Skip to content

Commit 1ebe561

Browse files
Luca Forstnermydea
andauthored
docs: Point to org auth token page (#393)
Co-authored-by: Francesco Novy <[email protected]>
1 parent 479be50 commit 1ebe561

File tree

6 files changed

+6
-11
lines changed

6 files changed

+6
-11
lines changed

packages/bundler-plugin-core/src/types.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ export interface Options {
1313

1414
/**
1515
* The authentication token to use for all communication with Sentry.
16-
* Can be obtained from https://sentry.io/settings/account/api/auth-tokens/.
17-
* Required scopes: project:releases (and org:read if setCommits option is used).
16+
* Can be obtained from https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/.
1817
*
1918
* This value can also be specified via the `SENTRY_AUTH_TOKEN` environment variable.
2019
*/

packages/dev-utils/src/generate-documentation-table.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const options: OptionDocumentation[] = [
2020
name: "authToken",
2121
type: "string",
2222
fullDescription:
23-
"The authentication token to use for all communication with Sentry. Can be obtained from https://sentry.io/settings/account/api/auth-tokens/. Required scopes: project:releases (and org:read if setCommits option is used).\n\nThis value can also be specified via the `SENTRY_AUTH_TOKEN` environment variable.",
23+
"The authentication token to use for all communication with Sentry. Can be obtained from https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/.\n\nThis value can also be specified via the `SENTRY_AUTH_TOKEN` environment variable.",
2424
},
2525
{
2626
name: "url",

packages/esbuild-plugin/README_TEMPLATE.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@ require("esbuild").build({
4646
org: process.env.SENTRY_ORG,
4747
project: process.env.SENTRY_PROJECT,
4848

49-
// Auth tokens can be obtained from https://sentry.io/settings/account/api/auth-tokens/
50-
// and need `project:releases` and `org:read` scopes
49+
// Auth tokens can be obtained from https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/
5150
authToken: process.env.SENTRY_AUTH_TOKEN,
5251
}),
5352
],

packages/rollup-plugin/README_TEMPLATE.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,7 @@ export default {
4545
org: process.env.SENTRY_ORG,
4646
project: process.env.SENTRY_PROJECT,
4747

48-
// Auth tokens can be obtained from https://sentry.io/settings/account/api/auth-tokens/
49-
// and need `project:releases` and `org:read` scopes
48+
// Auth tokens can be obtained from https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/
5049
authToken: process.env.SENTRY_AUTH_TOKEN,
5150
}),
5251
],

packages/vite-plugin/README_TEMPLATE.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,7 @@ export default defineConfig({
5353
org: process.env.SENTRY_ORG,
5454
project: process.env.SENTRY_PROJECT,
5555

56-
// Auth tokens can be obtained from https://sentry.io/settings/account/api/auth-tokens/
57-
// and need `project:releases` and `org:read` scopes
56+
// Auth tokens can be obtained from https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/
5857
authToken: process.env.SENTRY_AUTH_TOKEN,
5958
}),
6059
],

packages/webpack-plugin/README_TEMPLATE.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,7 @@ module.exports = {
4747
org: process.env.SENTRY_ORG,
4848
project: process.env.SENTRY_PROJECT,
4949

50-
// Auth tokens can be obtained from https://sentry.io/settings/account/api/auth-tokens/
51-
// and need `project:releases` and `org:read` scopes
50+
// Auth tokens can be obtained from https://sentry.io/orgredirect/organizations/:orgslug/settings/auth-tokens/
5251
authToken: process.env.SENTRY_AUTH_TOKEN,
5352
}),
5453
],

0 commit comments

Comments
 (0)