1
0
Fork 0
mirror of https://github.com/TryGhost/Ghost-Admin.git synced 2023-12-14 02:33:04 +01:00
Ghost-Admin/tests/helpers/configuration.js
Kevin Ansfield c33e801149 Fetch config from endpoint rather than meta tags (#368)
refs TryGhost/Ghost#7628 (issue), refs TryGhost/Ghost#7631 (required)

- update `config` service to fetch from public configuration endpoint
- add `beforeModel` to `application` route to fetch config and pause further processing until the request is complete
- remove `<meta name="env-*">` tags from generated `default.hbs` and internal testing `index.html`
- add mirage config to simulate configuration endpoint and helper to simulate enabled oauth config
- update `ghost-oauth2` torii provider to use auth server URL from server-provided config
2016-10-28 14:07:50 +01:00

12 lines
346 B
JavaScript

import {isEmpty} from 'ember-utils';
export function enableGhostOAuth(server) {
if (isEmpty(server.db.configurations)) {
server.loadFixtures('configurations');
}
server.db.configurations.update(1, {
ghostAuthId: '6e0704b3-c653-4c12-8da7-584232b5c629',
ghostAuthUrl: 'http://devauth.ghost.org:8080'
});
}