discourse/app/assets/javascripts/admin/addon/controllers/admin-backups-logs.js
David Taylor be354e7950
DEV: Update admin controllers to native class syntax (#20674)
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
2023-03-15 09:42:12 +00:00

11 lines
272 B
JavaScript

import { alias } from "@ember/object/computed";
import Controller, { inject as controller } from "@ember/controller";
export default class AdminBackupsLogsController extends Controller {
@controller adminBackups;
@alias("adminBackups.model") status;
logs = [];
}