Create apiKey and apiSecret aliases for Reddit provider

This commit is contained in:
RaviAnand Mohabir 2021-05-23 21:27:58 +02:00
parent 9a459070c4
commit 233197ff9a

View File

@ -2,6 +2,8 @@ import { OAuth2Provider, OAuth2ProviderConfig } from "./oauth2";
interface RedditOAuth2ProviderConfig extends OAuth2ProviderConfig { interface RedditOAuth2ProviderConfig extends OAuth2ProviderConfig {
duration?: "temporary" | "permanent"; duration?: "temporary" | "permanent";
apiKey: string;
apiSecret: string;
} }
const redditProfileHandler = ({ const redditProfileHandler = ({
@ -65,6 +67,8 @@ export class RedditOAuth2Provider extends OAuth2Provider<RedditOAuth2ProviderCon
super({ super({
...defaultConfig, ...defaultConfig,
...config, ...config,
clientId: config.apiKey,
clientSecret: config.apiSecret,
}); });
} }