I see full URL in the smartdocs view listing page, i would like to display only resource path ? How do i do this ?
~~ SF-1077215Kronos
I see full URL in the smartdocs view listing page, i would like to display only resource path ? How do i do this ?
~~ SF-1077215Kronos
Follow Steps below,
Hover on the page, you will see wheel like icon on top right side bar, click on view edit.
<div class="method_details clearfix">
<div class="method_data title">
<div class="verb-auth"><p data-role="verb" class="[verb]">[verb]</p>[security]</div>
<div class="title-description">[title]<p title="[base_url][resource_path]" class="resource_path" data-role="resource_path">[base_url][resource_path]</p></div>
</div>
<div class="method_data description">[body]</div>
</div>
TO
<div class="method_details clearfix">
<div class="method_data title">
<div class="verb-auth"><p data-role="verb" class="[verb]">[verb]</p>[security]</div>
<div class="title-description">[title]<p title="[resource_path]" class="resource_path" data-role="resource_path">[resource_path]</p></div>
</div>
<div class="method_data description">[body]</div>
</div>
You just removed base URL, Click on APPLY All displays.
That’s it. You got the resource path instead of FULL URL.