mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-29 15:12:58 +03:00
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()
|
|
});
|