a8a879ef53
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
8 lines
155 B
JavaScript
8 lines
155 B
JavaScript
import Controller from '@ember/controller';
|
|
|
|
export default class DebugController extends Controller {
|
|
get post() {
|
|
return this.model;
|
|
}
|
|
}
|