mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2026-05-18 16:56:35 +00:00
7 lines
286 B
JavaScript
7 lines
286 B
JavaScript
import $ from 'jquery';
|
|
import {createCodemirror} from './codemirror.ts';
|
|
|
|
export function initAuthorizedIntegrationClaimRuleEditor() {
|
|
if (!$('.user.authorized-integrations').length) return;
|
|
const _promise = createCodemirror($('#content')[0], 'claims.json', {language: 'JSON'});
|
|
}
|