75a138cb39
refs https://github.com/TryGhost/Admin/pull/2227 - a continuation of #2227 that runs the native classes codemod against app/services
9 lines
365 B
JavaScript
9 lines
365 B
JavaScript
import Service from '@ember/service';
|
|
import classic from 'ember-classic-decorator';
|
|
|
|
// dummy service to account for not having the ember-responsive dependency
|
|
// available for ember-light-table (we don't use it so no need for the dep)
|
|
// see https://github.com/offirgolan/ember-light-table/issues/576
|
|
@classic
|
|
export default class MediaService extends Service {}
|