1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Doc: Added blog posts for archival purpose and to allow listing them in notifications

This commit is contained in:
Laurent Cozic
2020-04-15 22:11:42 +00:00
parent e65af8c1e4
commit 676c43ebab
61 changed files with 1414 additions and 68 deletions

View File

@ -162,6 +162,12 @@ toolUtils.githubUsername = async function(email, name) {
return output;
};
toolUtils.patreonOauthToken = async function() {
const fs = require('fs-extra');
const r = await fs.readFile(`${__dirname}/patreon_oauth_token.txt`);
return r.toString();
};
toolUtils.githubOauthToken = async function() {
const fs = require('fs-extra');
const r = await fs.readFile(`${__dirname}/github_oauth_token.txt`);