mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-19 00:11:49 +03:00
15 lines
403 B
JavaScript
15 lines
403 B
JavaScript
|
import AboutModal from '../components/modals/settings/about';
|
||
|
import Controller from '@ember/controller';
|
||
|
import {action} from '@ember/object';
|
||
|
import {inject as service} from '@ember/service';
|
||
|
|
||
|
export default class SettingsController extends Controller {
|
||
|
@service modals;
|
||
|
@service upgradeStatus;
|
||
|
|
||
|
@action
|
||
|
openAbout() {
|
||
|
this.advancedModal = this.modals.open(AboutModal);
|
||
|
}
|
||
|
}
|