Is it possible to set an auth scope checkbox checked by default on Swashbuckle UI on a asp.net Core 2.0 Web API??
I use the "openid" scope and I'd like to have it checked every time.
Thank you.
Here is hacktastic workaround for modern browsers which can be injected into index.html
.
function checkScopes(container) {
const inputNodes = container.querySelectorAll(".scopes input");
for (const checkbox of inputNodes) {
checkbox.click();
console.log('Scope checkbox modified: ' + checkbox.id);
}
}
function watchDOM() {
// target element that we will observe
const target = document.body;
// subscriber function
function subscriber(mutations) {
mutations.forEach((mutation) => {
if (mutation.target.className == 'auth-wrapper') {
checkScopes(mutation.target);
}
});
}
// instantiating observer
const observer = new MutationObserver(subscriber);
// observing target
observer.observe(target, { childList: true, subtree: true });
};
document.addEventListener('DOMContentLoaded', watchDOM);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With