Ghost/ghost/admin/app/controllers/posts/analytics.js
Simon Backx 99e6f8ddda Moved analytics page to separate component
refs https://github.com/TryGhost/Team/issues/1976
refs https://ghost.slack.com/archives/C02G9E68C/p1664446234131629

- @tracked properties in controllers are persisted, should use components instead
2022-09-29 12:41:16 +02:00

8 lines
159 B
JavaScript

import Controller from '@ember/controller';
export default class AnalyticsController extends Controller {
get post() {
return this.model;
}
}