0
Fork 0
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:
Daniel Lockyer 2022-08-22 21:15:21 +02:00
parent c459807f9a
commit 43ad4ff814
No known key found for this signature in database
GPG key ID: D21186F0B47295AD
2 changed files with 0 additions and 8 deletions

View file

@ -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;

View file

@ -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 = ''}