Ghost/ghost/admin/app/controllers/posts/debug.js
Rishabh Garg a8a879ef53
Wired email debug screen with API (#15919)
refs https://github.com/TryGhost/Team/issues/2327

- wires email debug screen with real data from API
- fetches email batch data for showing all batches along with those errored
- fetches all recipient failures - temporary and permanent
- shows email settings that was used for sending out the email
2022-12-02 14:38:40 +05:30

8 lines
155 B
JavaScript

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