mirror of
https://github.com/discourse/discourse.git
synced 2025-02-13 09:05:33 +08:00
![Mark VanLandingham](/assets/img/avatar_default.png)
* DEV: Import every instance of Ember.computed function * export default for Ember.computed
14 lines
308 B
JavaScript
14 lines
308 B
JavaScript
import { alias } from "@ember/object/computed";
|
|
import { inject } from "@ember/controller";
|
|
import Controller from "@ember/controller";
|
|
export default Controller.extend({
|
|
adminBackups: inject(),
|
|
status: alias("adminBackups.model"),
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
|
|
this.logs = [];
|
|
}
|
|
});
|