mirror of
https://github.com/Mintplex-Labs/anything-llm.git
synced 2025-03-18 08:02:24 +00:00
* Autodocument Swagger API with JSDocs on /v1/ endpoints for API access implement single-player API keys WIP Admin API Keys * Create new api keys as both single and multi-user * Add boot and telem * Complete Admin API * Complete endpoints dark mode swagger * update docs * undo debug * update docs and readme
28 lines
No EOL
774 B
JavaScript
28 lines
No EOL
774 B
JavaScript
function waitForElm(selector) {
|
|
return new Promise(resolve => {
|
|
if (document.querySelector(selector)) {
|
|
return resolve(document.querySelector(selector));
|
|
}
|
|
|
|
const observer = new MutationObserver(mutations => {
|
|
if (document.querySelector(selector)) {
|
|
resolve(document.querySelector(selector));
|
|
observer.disconnect();
|
|
}
|
|
});
|
|
|
|
observer.observe(document.body, {
|
|
childList: true,
|
|
subtree: true
|
|
});
|
|
});
|
|
}
|
|
|
|
// Force change the Swagger logo in the header
|
|
waitForElm('img[alt="Swagger UI"]').then((elm) => {
|
|
if (window.SWAGGER_DOCS_ENV === 'development') {
|
|
elm.src = 'http://localhost:3000/public/anything-llm-light.png'
|
|
} else {
|
|
elm.src = `${window.location.origin}/anything-llm-light.png`
|
|
}
|
|
}); |