fix #475: label vpd targets as db objects

This commit is contained in:
devmrko
2026-06-26 05:12:07 +09:00
parent b64f06d5d5
commit 8d2909e589
3 changed files with 7 additions and 5 deletions

View File

@@ -31,11 +31,11 @@
<form method="post" action="/vpd-policies" class="form-grid">
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}">
<label>
VPD 적용 대상
VPD 적용 대상 TABLE/VIEW
<select class="form-select" name="objectKey" required>
<option th:each="object : ${objects}"
th:value="${object.owner() + '.' + object.objectName()}"
th:text="${object.displayName() + ' / ' + object.ordsPath()}"></option>
th:text="${object.displayName()}"></option>
</select>
</label>
<label>
@@ -248,7 +248,7 @@
</th:block>
<tr th:if="${#lists.isEmpty(policies)}">
<td colspan="8" class="text-muted">
등록된 보호 객체에 적용된 VPD policy가 없습니다. ORDS 조회 Handler 대상 등록 상태와 DB policy 적용 상태를 확인하세요.
등록된 TABLE/VIEW에 적용된 VPD policy가 없습니다. 보호 객체 등록 상태와 DB policy 적용 상태를 확인하세요.
</td>
</tr>
</tbody>