Skip to content

Commit

Permalink
Fix OAuth export to include slack() (#1010)
Browse files Browse the repository at this point in the history
  • Loading branch information
pilcrowonpaper authored Aug 22, 2023
1 parent 9c31e82 commit 21c18f6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions documentation/content/oauth/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ We also have framework specific guides.
- osu!
- Patreon
- Reddit
- Slack
- Spotify
- Twitch
- Twitter
4 changes: 4 additions & 0 deletions documentation/content/reference/oauth/modules/providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,10 @@ See [Patreon](/oauth/providers/patreon) provider.

See [Reddit](/oauth/providers/reddit) provider.

## `slack()`

See [Slack](/oauth/providers/slack) provider.

## `spotify()`

See [Spotify](/oauth/providers/spotify) provider.
Expand Down
8 changes: 8 additions & 0 deletions packages/oauth/src/providers/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ export type {
RedditUserAuth
} from "./reddit.js";

export { slack } from "./slack.js";
export type {
SlackAuth,
SlackTokens,
SlackUser,
SlackUserAuth
} from "./slack.js";

export { spotify } from "./spotify.js";
export type {
SpotifyAuth,
Expand Down

0 comments on commit 21c18f6

Please sign in to comment.