Clarity: How to set modern UX as default page for all the users
search cancel

Clarity: How to set modern UX as default page for all the users

book

Article ID: 187769

calendar_today

Updated On:

Products

Clarity PPM On Premise

Issue/Introduction

 How to set modern UX as default page for all the users 

Environment

Release Clarity PPM 15.X

Cause

Configuration 

Resolution

1. Stop the "app" services
2. Go to /opt/clarity/.setup/templates/docroot/
3. Backup the index.html 
4. Stop and remove all the clarity "app" services: /opt/clarity/service stop remove app
5. Edit the index.html and use the below code
 
<html><head>
<!-- Changes below commented to stop app going to classic ux -->
<!-- <script>location.replace("@[email protected]/nu#action:homeActionId");</script> -->
<!-- Changes below to navigate to Modern UX-->
<script>location.replace("/pm");</script>
</head></html>
 
6. Redeploy all the clarity "app" services (service add deploy app bg beacon nsa) 
7. Start all the clarity services: /opt/clarity/service add deploy start app
8. Login to clarity and it will take you to the modern ux 
 
Note: By applying this change you will not be able to login to CSA and all the changes have to be done using properties.xml or you will have to revert back the index.html to login to CSA. Also these are not a supported configuration change and you should ensure to make this changes after upgrade.