mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 14:03:48 +03:00
790d9a7920
- the template code had moved to a model in Settings but the controller code hadn't been moved over so the getters were missing - this moves all the relevant code from What's New to the About modal
7 lines
181 B
JavaScript
7 lines
181 B
JavaScript
import Controller from '@ember/controller';
|
|
import {inject as service} from '@ember/service';
|
|
|
|
export default class WhatsNewController extends Controller {
|
|
@service whatsNew;
|
|
}
|