mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-21 16:06:12 +08:00
This commit was generated using the ember-native-class-codemod along with a handful of manual updates
10 lines
272 B
JavaScript
Vendored
10 lines
272 B
JavaScript
Vendored
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 = [];
|
|
}
|