File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
WordPress/Classes/Utility/Analytics Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ import Foundation
48
48
case gutenbergEditorSettingsFetched
49
49
case gutenbergEditorHelpShown
50
50
case gutenbergEditorBlockInserted
51
+ case gutenbergEditorBlockMoved
51
52
52
53
// Notifications Permissions
53
54
case pushNotificationsPrimerSeen
@@ -426,6 +427,8 @@ import Foundation
426
427
return " editor_help_shown "
427
428
case . gutenbergEditorBlockInserted:
428
429
return " editor_block_inserted "
430
+ case . gutenbergEditorBlockMoved:
431
+ return " editor_block_moved "
429
432
// Notifications permissions
430
433
case . pushNotificationsPrimerSeen:
431
434
return " notifications_primer_seen "
@@ -1095,6 +1098,7 @@ extension WPAnalytics {
1095
1098
var event : WPAnalyticsEvent ?
1096
1099
switch eventName {
1097
1100
case " editor_block_inserted " : event = . gutenbergEditorBlockInserted
1101
+ case " editor_block_moved " : event = . gutenbergEditorBlockMoved
1098
1102
default : event = nil
1099
1103
}
1100
1104
You can’t perform that action at this time.
0 commit comments