Skip to content

Commit

Permalink
feat: text improvements and url cleanup (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
NithinKuruba authored Oct 24, 2024
1 parent 21ac205 commit 1b4c5c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/utils/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ export const generateRealmLinksByEnv = (env: string, realmName: string) => {

export const generateMasterRealmLinksByEnv = (env: string, realmName: string) => {
const domain = env === 'dev' ? dev_kc_url : env === 'test' ? test_kc_url : prod_kc_url;
return `${domain}/auth/admin/master/console/#/realms/${realmName}`;
return `${domain}/auth/admin/master/console/`;
};

export const getRealmPermissionsByRole = (realmName: string) => {
Expand Down
2 changes: 1 addition & 1 deletion app/utils/mailer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -291,7 +291,7 @@ export const sendReadyToUseEmail = async (realm: Roster) => {
</ul>
</li>
<li>
<p>At this point you will see a <code>forbidden</code> message</p>
<p>At this point you cannot log in, and might see a loading spinner or a <code>forbidden</code> message. Exit from the browser and continue with next step.</p>
</li>
<li>
<p>One of the existing Realm Admins will need to add the user that logged in to #1 above to the custom realm admin group via the <strong>master</strong> links</p>
Expand Down

0 comments on commit 1b4c5c7

Please sign in to comment.