Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
albogdano committed Feb 20, 2024
1 parent 01d5511 commit b866efb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## A scalable, multitenant backend for the cloud.

[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=com.erudika%3Apara-parent&metric=alert_status)](https://sonarcloud.io/dashboard?id=com.erudika%3Apara-parent)
[![Docker pulls](https://img.shields.io/docker/pulls/erudikaltd/para)](https://hub.docker.com/r/erudikaltd/para)
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/com.erudika/para-core/badge.svg)](https://maven-badges.herokuapp.com/maven-central/com.erudika/para-core)
[![Join the chat at https://gitter.im/Erudika/para](https://badges.gitter.im/Erudika/para.svg)](https://gitter.im/Erudika/para?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,10 @@ public static String getAppidFromAuthRequest(HttpServletRequest request) {
}
}

/**
* @param app the Para app object
* @return a set of host URLs if found in app settings
*/
public static Set<String> getHostUrlAliasesForReturn(App app) {
String hostUrlAliases = (String) app.getSetting("security.hosturl_aliases");
if (!StringUtils.isBlank(hostUrlAliases)) {
Expand Down

0 comments on commit b866efb

Please sign in to comment.