diff options
| author | mo khan <mo@mokhan.ca> | 2025-03-27 08:57:49 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-03-27 08:57:49 -0600 |
| commit | f7b7b7702ef5821f150481221fd71b256b845096 (patch) | |
| tree | 0cf8b6f4c60d869d90f3fb5813a82d8f3daa25c0 | |
| parent | 739ff3c99773e1310f403843fe5fac8059fb9fe6 (diff) | |
feat: add consistent header across services
| -rwxr-xr-x | bin/idp | 4 | ||||
| -rwxr-xr-x | bin/ui | 6 |
2 files changed, 10 insertions, 0 deletions
@@ -228,6 +228,7 @@ module Authn <nav> <ul> <li><strong>IdP</strong></li> + <li><a href="http://ui.example.com:8080/">UI</a></li> </ul> </nav> @@ -340,6 +341,7 @@ module Authn <nav> <ul> <li><strong>IdP</strong></li> + <li><a href="http://ui.example.com:8080/">UI</a></li> </ul> </nav> @@ -653,6 +655,7 @@ module Authz <nav> <ul> <li><strong>IdP</strong></li> + <li><a href="http://ui.example.com:8080/">UI</a></li> </ul> </nav> @@ -745,6 +748,7 @@ class IdentityProvider <nav> <ul> <li><strong>IdP</strong></li> + <li><a href="http://ui.example.com:8080/">UI</a></li> </ul> <ul> <li><a href="/">Home</a></li> @@ -181,6 +181,7 @@ class UI <%- if current_user?(request) -%> <nav> <ul> + <li><a href="http://#{$idp_host}/">IdP</a></li> <li><strong>UI</strong></li> </ul> <ul> @@ -201,6 +202,7 @@ class UI <%- else -%> <nav> <ul> + <li><a href="http://#{$idp_host}/">IdP</a></li> <li><strong>UI</strong></li> </ul> <ul> @@ -280,6 +282,7 @@ class UI <<~ERB <nav> <ul> + <li><a href="http://#{$idp_host}/">IdP</a></li> <li><strong>UI</strong></li> </ul> <ul> @@ -315,6 +318,7 @@ class UI <<~ERB <nav> <ul> + <li><a href="http://#{$idp_host}/">IdP</a></li> <li><strong>UI</strong></li> </ul> <ul> @@ -372,6 +376,7 @@ class UI <<~ERB <nav> <ul> + <li><a href="http://#{$idp_host}/">IdP</a></li> <li><strong>UI</strong></li> </ul> <ul> @@ -455,6 +460,7 @@ class UI <<~ERB <nav> <ul> + <li><a href="http://#{$idp_host}/">IdP</a></li> <li><strong>UI</strong></li> </ul> <ul> |
