@@ -29,10 +29,12 @@ export const submitAnalyticsBtn = (status) => ({
29
29
} ) ;
30
30
31
31
const DEFAULT_FOOTER_LINK_NAMES = [
32
+ 'Fork us on GitHub' ,
32
33
'Contact us' ,
33
34
'Privacy Policy' ,
34
35
'Documentation' ,
35
36
'Slack Channel' ,
37
+ 'EPAM' ,
36
38
] ;
37
39
38
40
export const ADMIN_SERVER_SETTINGS_PAGE_EVENTS = {
@@ -46,9 +48,13 @@ export const ADMIN_SERVER_SETTINGS_PAGE_EVENTS = {
46
48
element_name : 'session_inactivity_timeout' ,
47
49
condition,
48
50
} ) ,
51
+ AUTHORIZATION_CONFIGURATION_TAB : {
52
+ ...basicClickEventParametersAdminServerSettingsPage ,
53
+ element_name : 'auth_configuration' ,
54
+ } ,
49
55
LINKS_AND_BRANDING_TAB : {
50
56
...basicClickEventParametersAdminServerSettingsPage ,
51
- element_name : 'links_branding ' ,
57
+ element_name : 'links_and_branding ' ,
52
58
} ,
53
59
ANALYTICS_TAB : {
54
60
...basicClickEventParametersAdminServerSettingsPage ,
@@ -78,14 +84,9 @@ export const ADMIN_SERVER_SETTINGS_PAGE_EVENTS = {
78
84
onClickFooterLink : ( linkName , isPreview ) => ( {
79
85
...basicClickEventParametersAdminServerSettingsPage ,
80
86
place : isPreview ? 'preview_footer' : 'footer' ,
81
- link_name : DEFAULT_FOOTER_LINK_NAMES . includes ( linkName ) ? 'default_link' : 'custom_link' ,
87
+ link_name : DEFAULT_FOOTER_LINK_NAMES . includes ( linkName ) ? linkName : 'custom_link' ,
82
88
} ) ,
83
89
// GA3 events
84
- AUTHORIZATION_CONFIGURATION_TAB : {
85
- category : ADMIN_SERVER_SETTINGS_PAGE ,
86
- action : 'Click on tab Authorization Configuration' ,
87
- label : 'Open tab Authorization Configuration' ,
88
- } ,
89
90
ACTIVATE_GITHUB_SWITCHER : {
90
91
category : ADMIN_SERVER_SETTINGS_PAGE ,
91
92
action : 'Click on switcher Activate Github authorization on tab Authorization Configuration' ,
0 commit comments