2015-05-26 05:10:50 +03:00
|
|
|
import Ember from 'ember';
|
2016-06-30 13:21:47 +03:00
|
|
|
import Service from 'ember-service';
|
2016-05-24 15:06:59 +03:00
|
|
|
import ghostPaths from 'ghost-admin/utils/ghost-paths';
|
2015-05-26 05:10:50 +03:00
|
|
|
|
2016-06-30 13:21:47 +03:00
|
|
|
// ember-cli-shims doesn't export _ProxyMixin
|
|
|
|
const {_ProxyMixin} = Ember;
|
2015-10-28 14:36:45 +03:00
|
|
|
|
|
|
|
export default Service.extend(_ProxyMixin, {
|
2015-05-26 05:10:50 +03:00
|
|
|
content: ghostPaths()
|
|
|
|
});
|