mirror of https://github.com/gophish/gophish
For now, avoid rendering the "campaign created" events on the timeline to make things more consolidated. Fixes #999
parent
2ff0c3d95c
commit
9ba3f04d1e
File diff suppressed because one or more lines are too long
|
@ -755,6 +755,9 @@ function load() {
|
||||||
});
|
});
|
||||||
// Setup the graphs
|
// Setup the graphs
|
||||||
$.each(campaign.timeline, function (i, event) {
|
$.each(campaign.timeline, function (i, event) {
|
||||||
|
if (event.message == "Campaign Created") {
|
||||||
|
return true
|
||||||
|
}
|
||||||
var event_date = moment.utc(event.time).local()
|
var event_date = moment.utc(event.time).local()
|
||||||
timeline_series_data.push({
|
timeline_series_data.push({
|
||||||
email: event.email,
|
email: event.email,
|
||||||
|
|
Loading…
Reference in New Issue