mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 07:26:04 +08:00
be354e7950
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
11 lines
272 B
JavaScript
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 = [];
|
|
}
|