[Developer] #424 support ORDS handler source editing
This commit is contained in:
@@ -9,6 +9,9 @@
|
||||
<p>Bearer Token을 DB 컨텍스트로 변환하는 ORDS Handler와 PL/SQL 흐름을 확인합니다.</p>
|
||||
</div>
|
||||
|
||||
<div class="alert alert-success" th:if="${message}" th:text="${message}"></div>
|
||||
<div class="alert alert-danger" th:if="${errorMessage}" th:text="${errorMessage}"></div>
|
||||
|
||||
<section class="content-band" th:each="handler : ${handlers}">
|
||||
<div class="section-heading">
|
||||
<h2 th:text="${handler.method() + ' ' + handler.fullPath()}">POST /ords/...</h2>
|
||||
@@ -16,6 +19,7 @@
|
||||
</div>
|
||||
<div class="meta-row">
|
||||
<span>Schema: <strong th:text="${handler.schemaName()}">CB_ORDS</strong></span>
|
||||
<span>Parsing Schema: <strong th:text="${handler.parsingSchema()}">CB_ORDS</strong></span>
|
||||
<span>Module: <strong th:text="${handler.moduleName()}">cb.agent.security</strong></span>
|
||||
<span>Template: <strong th:text="${handler.template()}">vpd/documents</strong></span>
|
||||
</div>
|
||||
@@ -26,7 +30,18 @@
|
||||
</section>
|
||||
<section class="probe-exchange">
|
||||
<h3>Handler Source</h3>
|
||||
<pre th:text="${handler.source()}"></pre>
|
||||
<form method="post" action="/ords-handlers/update">
|
||||
<input type="hidden" th:name="${_csrf.parameterName}" th:value="${_csrf.token}">
|
||||
<input type="hidden" name="handlerId" th:value="${handler.handlerId()}">
|
||||
<textarea class="form-control code-editor" name="source" rows="16" spellcheck="false"
|
||||
th:text="${handler.source()}"></textarea>
|
||||
<div class="form-actions">
|
||||
<button class="btn btn-sm rw-btn-primary" type="submit"
|
||||
th:disabled="${!handler.plsqlEditable()}">
|
||||
저장
|
||||
</button>
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
<section class="probe-exchange span-2">
|
||||
<h3>Bearer Token -> User Context Package</h3>
|
||||
|
||||
Reference in New Issue
Block a user