单点注销 RC1

This commit is contained in:
Crystal.Sea
2020-10-26 22:31:42 +08:00
parent 68d72e2dd4
commit f635ed358c
14 changed files with 319 additions and 1 deletions

View File

@@ -275,6 +275,11 @@ apps.visible.all=\u6240\u6709\u7528\u6237
apps.visible.internet=\u5185\u90e8\u7528\u6237
apps.visible.intranet=\u5916\u90e8\u7528\u6237
apps.loginUrl=\u767b\u5f55\u5730\u5740
apps.logoutUrl=\u6ce8\u9500\u5730\u5740
apps.logoutType=\u6ce8\u9500\u65b9\u5f0f
apps.logoutType.none=\u65e0
apps.logoutType.back_channel=\u540e\u53f0
apps.logoutType.front_channel=\u524d\u53f0
apps.credential=\u51ed\u8bc1\u7c7b\u578b
apps.credential.user-defined=\u7528\u6237\u81ea\u5b9a\u4e49
apps.credential.shared=\u5e94\u7528\u5171\u4eab

View File

@@ -275,6 +275,11 @@ apps.visible.all=All
apps.visible.internet=Internet
apps.visible.intranet=Intranet
apps.loginUrl=loginUrl
apps.logoutUrl=logoutUrl
apps.logoutType=logoutType
apps.logoutType.none=NONE
apps.logoutType.back_channel=BACK_CHANNEL
apps.logoutType.front_channel=FRONT_CHANNEL
apps.credential=credential
apps.credential.user-defined=user-defined
apps.credential.shared=shared

View File

@@ -275,6 +275,11 @@ apps.visible.all=\u6240\u6709\u7528\u6237
apps.visible.internet=\u5185\u90e8\u7528\u6237
apps.visible.intranet=\u5916\u90e8\u7528\u6237
apps.loginUrl=\u767b\u5f55\u5730\u5740
apps.logoutUrl=\u6ce8\u9500\u5730\u5740
apps.logoutType=\u6ce8\u9500\u65b9\u5f0f
apps.logoutType.none=\u65e0
apps.logoutType.back_channel=\u540e\u53f0
apps.logoutType.front_channel=\u524d\u53f0
apps.credential=\u51ed\u8bc1\u7c7b\u578b
apps.credential.user-defined=\u7528\u6237\u81ea\u5b9a\u4e49
apps.credential.shared=\u5e94\u7528\u5171\u4eab

View File

@@ -29,6 +29,20 @@
<input type="text" class="form-control" id="loginUrl" name="loginUrl" size="100" title="" value="" required="" />
</td>
</tr>
<tr>
<th><@locale code="apps.logoutUrl"/></th>
<td>
<input type="text" id="logoutUrl" class="form-control" name="logoutUrl" title="" value=""/>
</td>
<th><@locale code="apps.logoutType"/></th>
<td>
<select id="logoutType" name="logoutType" class="form-control" >
<option value="0" selected ><@locale code="apps.logoutType.none"/></option>
<option value="1" ><@locale code="apps.logoutType.back_channel"/></option>
<option value="2" ><@locale code="apps.logoutType.front_channel"/></option>
</select>
</td>
</tr>
<tr>
<th style="width:15%;"><@locale code="apps.protocol"/></th>
<td style="width:35%;">

View File

@@ -29,6 +29,20 @@
<input type="text" class="form-control" id="loginUrl" name="loginUrl" title="" value="${model.loginUrl!}" required="" />
</td>
</tr>
<tr>
<th><@locale code="apps.logoutUrl"/></th>
<td>
<input type="text" id="logoutUrl" class="form-control" name="logoutUrl" title="" value="${model.logoutUrl!}"/>
</td>
<th><@locale code="apps.logoutType"/></th>
<td>
<select id="logoutType" name="logoutType" class="form-control" >
<option value="0" <#if 0==model.logoutType!>selected</#if> ><@locale code="apps.logoutType.none"/></option>
<option value="1" <#if 1==model.logoutType!>selected</#if> ><@locale code="apps.logoutType.back_channel"/></option>
<option value="2" <#if 2==model.logoutType!>selected</#if> ><@locale code="apps.logoutType.front_channel"/></option>
</select>
</td>
</tr>
<tr>
<th><@locale code="apps.protocol"/></th>
<td>