Ghost/ghost/admin/mirage/fixtures/configurations.js
Kevin Ansfield 03c45a445e Removed defunct Ghost OAuth code (#848)
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
2017-09-04 21:17:04 +02:00

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'
}];