fix: plugin sentry id token / private method
Signed-off-by: rodion <rodiongork@github.com>
This commit is contained in:
@@ -41,17 +41,6 @@ export class ProductionSentryApi implements SentryApi {
|
||||
identityApi?: IdentityApi | undefined,
|
||||
);
|
||||
// (undocumented)
|
||||
authOptions(): Promise<
|
||||
| {
|
||||
headers?: undefined;
|
||||
}
|
||||
| {
|
||||
headers: {
|
||||
authorization: string;
|
||||
};
|
||||
}
|
||||
>;
|
||||
// (undocumented)
|
||||
fetchIssues(
|
||||
project: string,
|
||||
statsFor: string,
|
||||
|
||||
@@ -51,7 +51,7 @@ export class ProductionSentryApi implements SentryApi {
|
||||
return (await response.json()) as SentryIssue[];
|
||||
}
|
||||
|
||||
async authOptions() {
|
||||
private async authOptions() {
|
||||
if (!this.identityApi) {
|
||||
return {};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user