mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-17 23:44:39 -05:00
Removed unused services
- these are not needed
This commit is contained in:
parent
c459807f9a
commit
43ad4ff814
2 changed files with 0 additions and 8 deletions
|
@ -1,6 +1,5 @@
|
|||
import Component from '@glimmer/component';
|
||||
import {action} from '@ember/object';
|
||||
import {inject as service} from '@ember/service';
|
||||
|
||||
const ALL_EVENT_TYPES = [
|
||||
{event: 'added', icon: 'event-filter-signup', name: 'Added'},
|
||||
|
@ -21,9 +20,6 @@ const ALL_RESOURCE_TYPES = [
|
|||
];
|
||||
|
||||
export default class AuditLogEventFilter extends Component {
|
||||
@service settings;
|
||||
@service feature;
|
||||
|
||||
excludedEvents = null;
|
||||
excludedResources = null;
|
||||
|
||||
|
|
|
@ -1,13 +1,9 @@
|
|||
import Helper from '@ember/component/helper';
|
||||
import classic from 'ember-classic-decorator';
|
||||
import {isBlank} from '@ember/utils';
|
||||
import {inject as service} from '@ember/service';
|
||||
|
||||
@classic
|
||||
export default class AuditLogEventFilter extends Helper {
|
||||
@service settings;
|
||||
@service feature;
|
||||
|
||||
compute(
|
||||
positionalParams,
|
||||
{excludedEvents = [], excludedResources = [], user = ''}
|
||||
|
|
Loading…
Add table
Reference in a new issue