mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 18:01:36 +03:00
03c45a445e
refs https://github.com/TryGhost/Ghost/issues/8958 - Ghost OAuth isn't coming back, time for the code to disappear and simply all the things - fixes the `Usage of router is deprecated` notices that flood the console/test logs when testing
18 lines
405 B
JavaScript
18 lines
405 B
JavaScript
export default [{
|
|
blogTitle: 'Test Blog',
|
|
blogUrl: `${window.location.origin}/`,
|
|
clientId: 'ghost-admin',
|
|
clientSecret: '1234ClientSecret',
|
|
fileStorage: 'true',
|
|
internalTags: 'false',
|
|
publicAPI: 'false',
|
|
routeKeywords: {
|
|
tag: 'tag',
|
|
author: 'author',
|
|
page: 'page',
|
|
preview: 'p',
|
|
private: 'private'
|
|
},
|
|
useGravatar: 'true'
|
|
}];
|