11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
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()
|
|
});
|