()
| 26 | window.onload = onLoad; |
| 27 | |
| 28 | function checkRedirectReason() { |
| 29 | let redirectReason = getQueryParameter('redirectReason'); |
| 30 | if (redirectReason === 'prohibited') { |
| 31 | return 'Access if prohibited for this user' |
| 32 | } |
| 33 | |
| 34 | return redirectReason; |
| 35 | } |
| 36 | |
| 37 | function onLoad() { |
| 38 | axiosInstance.get('auth/config').then(({data: config}) => { |
no test coverage detected