Ghost/ghost/admin/app/components/settings/history/search.js
Daniel Lockyer b226b03f09
Renamed Audit Log to History
refs https://github.com/TryGhost/Toolbox/issues/356

- this commit updates the route to `/settings/history` and moves all the
  files to their new name so we can avoid further cleanup down the line
2022-09-06 11:49:29 +01:00

21 lines
487 B
JavaScript

import Component from '@glimmer/component';
import {action} from '@ember/object';
import {inject as service} from '@ember/service';
import {task, timeout} from 'ember-concurrency';
export default class HistorySearch extends Component {
@service store;
@action
clear() {
this.args.onChange(null);
}
@task
*searchUsersTask(term) {
yield timeout(300); // debounce
return yield this.store.query('user', {search: term, limit: 20});
}
}