|
{{template "org/settings/layout_head" (dict "ctxData" . "pageClass" "organization settings options")}}
|
|
<div class="org-setting-content">
|
|
<h4 class="ui top attached header">
|
|
{{ctx.Locale.Tr "settings.applications"}}
|
|
</h4>
|
|
|
|
{{template "user/settings/applications_oauth2_list" .}}
|
|
</div>
|
|
{{template "org/settings/layout_footer" .}}
|
marked.setOptions({
highlight: function (code, lang) {
// Use highlight.js to highlight the code
const language = hljs.getLanguage(lang) ? lang : 'plaintext'; // Fallback to 'plaintext' if no language is found
return hljs.highlight(language, code).value; // Return the highlighted code
}
});