Skip to content

Commit

Permalink
fix atlassian provider
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowonpaper committed Jan 27, 2024
1 parent b72a69b commit 53ceecc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "arctic",
"type": "module",
"version": "1.0.0",
"version": "1.0.1",
"description": "OAuth 2.0 clients for popular providers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/providers/atlassian.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { TimeSpan, createDate } from "oslo";
import type { OAuth2Provider } from "../index.js";

const authorizeEndpoint = "https://auth.atlassian.com/authorize";
const tokenEndpoint = "https://auth.atlassian.com/token";
const tokenEndpoint = "https://auth.atlassian.com/oauth/token";

export class Atlassian implements OAuth2Provider {
private client: OAuth2Client;
Expand Down

0 comments on commit 53ceecc

Please sign in to comment.