This commit is contained in:
syuilo 2018-11-08 01:42:02 +09:00
parent 1056a7167d
commit e0ec56abb5
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -88,6 +88,12 @@ export default define(meta, (ps, me) => new Promise(async (res, rej) => {
response.hidedTags = instance.hidedTags;
response.recaptchaSecretKey = instance.recaptchaSecretKey;
response.proxyAccount = instance.proxyAccount;
response.enableTwitterIntegration = instance.enableTwitterIntegration;
response.twitterConsumerKey = instance.twitterConsumerKey;
response.twitterConsumerSecret = instance.twitterConsumerSecret;
response.enableGithubIntegration = instance.enableGithubIntegration;
response.githubClientId = instance.githubClientId;
response.githubClientSecret = instance.githubClientSecret;
}
res(response);