Ghost/ghost/admin/app/services/ghost-paths.js

11 lines
272 B
JavaScript
Raw Normal View History

import Ember from 'ember';
import Service from 'ember-service';
import ghostPaths from 'ghost-admin/utils/ghost-paths';
// ember-cli-shims doesn't export _ProxyMixin
const {_ProxyMixin} = Ember;
export default Service.extend(_ProxyMixin, {
content: ghostPaths()
});