mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-01 23:37:43 +03:00
13 lines
346 B
JavaScript
13 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'
|
||
|
});
|
||
|
}
|