jmix icon indicating copy to clipboard operation
jmix copied to clipboard

Set X-Frame-Options to SAMEORIGIN in the OIDC UI configuration

Open gorbunkov opened this issue 2 years ago • 0 comments

We should add something like this:

http.headers(headers -> {
    headers.frameOptions(frameOptions -> {
        frameOptions.sameOrigin();
    });
});

gorbunkov avatar Aug 12 '22 06:08 gorbunkov