mirror of
https://github.com/discourse/discourse.git
synced 2024-11-30 03:43:38 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
11 lines
272 B
JavaScript
11 lines
272 B
JavaScript
import Controller, { inject as controller } from "@ember/controller";
|
|
import { alias } from "@ember/object/computed";
|
|
|
|
export default class AdminBackupsLogsController extends Controller {
|
|
@controller adminBackups;
|
|
|
|
@alias("adminBackups.model") status;
|
|
|
|
logs = [];
|
|
}
|