KEYCLOAK-1140 Display redirect uri on identity provider detail page
This commit is contained in:
parent
96dad77c66
commit
b777534411
4 changed files with 29 additions and 4 deletions
|
@ -10,6 +10,15 @@
|
||||||
<h2 class="pull-left">{{identityProvider.alias}} Provider Settings</h2>
|
<h2 class="pull-left">{{identityProvider.alias}} Provider Settings</h2>
|
||||||
<p class="subtitle"><span class="required">*</span> Required fields</p>
|
<p class="subtitle"><span class="required">*</span> Required fields</p>
|
||||||
<form class="form-horizontal" name="realmForm" novalidate>
|
<form class="form-horizontal" name="realmForm" novalidate>
|
||||||
|
<fieldset>
|
||||||
|
<div class="form-group clearfix">
|
||||||
|
<label class="col-sm-2 control-label" for="redirectUri">Redirect URI</label>
|
||||||
|
<div class="col-sm-6">
|
||||||
|
<input class="form-control" id="redirectUri" type="text" value="{{callbackUrl}}{{identityProvider.alias}}/endpoint" readonly kc-select-action="click">
|
||||||
|
</div>
|
||||||
|
<span tooltip-placement="right" tooltip="The redirect uri to use when configuring the identity provider" class="fa fa-info-circle"></span>
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<div class="form-group clearfix">
|
<div class="form-group clearfix">
|
||||||
<label class="col-sm-2 control-label" for="identifier">Alias <span class="required">*</span></label>
|
<label class="col-sm-2 control-label" for="identifier">Alias <span class="required">*</span></label>
|
||||||
|
|
|
@ -10,6 +10,15 @@
|
||||||
<h2 class="pull-left">{{identityProvider.alias}} Provider Settings</h2>
|
<h2 class="pull-left">{{identityProvider.alias}} Provider Settings</h2>
|
||||||
<p class="subtitle"><span class="required">*</span> Required fields</p>
|
<p class="subtitle"><span class="required">*</span> Required fields</p>
|
||||||
<form class="form-horizontal" name="realmForm" novalidate>
|
<form class="form-horizontal" name="realmForm" novalidate>
|
||||||
|
<fieldset>
|
||||||
|
<div class="form-group clearfix">
|
||||||
|
<label class="col-sm-2 control-label" for="redirectUri">Redirect URI</label>
|
||||||
|
<div class="col-sm-6">
|
||||||
|
<input class="form-control" id="redirectUri" type="text" value="{{callbackUrl}}{{identityProvider.alias}}/endpoint" readonly kc-select-action="click">
|
||||||
|
</div>
|
||||||
|
<span tooltip-placement="right" tooltip="The redirect uri to use when configuring the identity provider" class="fa fa-info-circle"></span>
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<div class="form-group clearfix">
|
<div class="form-group clearfix">
|
||||||
<label class="col-sm-2 control-label" for="identifier">Alias <span class="required">*</span></label>
|
<label class="col-sm-2 control-label" for="identifier">Alias <span class="required">*</span></label>
|
||||||
|
|
|
@ -10,6 +10,15 @@
|
||||||
<h2 class="pull-left">{{identityProvider.alias}} Provider Settings</h2>
|
<h2 class="pull-left">{{identityProvider.alias}} Provider Settings</h2>
|
||||||
<p class="subtitle"><span class="required">*</span> Required fields</p>
|
<p class="subtitle"><span class="required">*</span> Required fields</p>
|
||||||
<form class="form-horizontal" name="realmForm" novalidate>
|
<form class="form-horizontal" name="realmForm" novalidate>
|
||||||
|
<fieldset>
|
||||||
|
<div class="form-group clearfix">
|
||||||
|
<label class="col-sm-2 control-label" for="redirectUri">Redirect URI</label>
|
||||||
|
<div class="col-sm-6">
|
||||||
|
<input class="form-control" id="redirectUri" type="text" value="{{callbackUrl}}{{identityProvider.alias}}/endpoint" readonly kc-select-action="click">
|
||||||
|
</div>
|
||||||
|
<span tooltip-placement="right" tooltip="The redirect uri to use when configuring the identity provider" class="fa fa-info-circle"></span>
|
||||||
|
</div>
|
||||||
|
</fieldset>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<div class="form-group clearfix">
|
<div class="form-group clearfix">
|
||||||
<label class="col-sm-2 control-label" for="clientId">Client ID <span class="required">*</span></label>
|
<label class="col-sm-2 control-label" for="clientId">Client ID <span class="required">*</span></label>
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr ng-show="configuredProviders.length > 0">
|
<tr ng-show="configuredProviders.length > 0">
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Callback URI</th>
|
<th>Provider</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody ng-show="configuredProviders.length > 0">
|
<tbody ng-show="configuredProviders.length > 0">
|
||||||
|
@ -34,9 +34,7 @@
|
||||||
<td>
|
<td>
|
||||||
<a href="#/realms/{{realm.realm}}/identity-provider-settings/provider/{{identityProvider.providerId}}/{{identityProvider.alias}}">{{identityProvider.alias}}</a>
|
<a href="#/realms/{{realm.realm}}/identity-provider-settings/provider/{{identityProvider.providerId}}/{{identityProvider.alias}}">{{identityProvider.alias}}</a>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>{{identityProvider.providerId}}</td>
|
||||||
{{callbackUrl}}{{identityProvider.alias}}/endpoint
|
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
Loading…
Reference in a new issue