This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Adaptive script to allow access only via federation and block access via login and password | |
// Error page to redirect unauthorized users, | |
// can be either an absolute URL or relative URL to server root, or empty/null | |
// null/empty value will redirect to the default error page | |
var errorPage = ''; | |
// Additional query parameters to be added to the above URL. | |
// Hint: Use i18n keys for error messages | |
var errorPageParameters = { | |
'status': 'Unauthorized', |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Copyright (c) 2024 WSO2 LLC. (http://www.wso2.org) | |
* All rights reserved. | |
* | |
* This software is the property of WSO2 LLC. and its suppliers, if any. | |
* Dissemination of any information or reproduction of any material contained | |
* herein in any form is strictly forbidden, unless permitted by WSO2 expressly. | |
* You may not alter or remove any copyright or other notice from copies of this content. | |
*/ |
OlderNewer