Created
September 6, 2023 11:47
-
-
Save dimitrispaxinos/bfb7d7c544abf2ac25de7131e18d5f3c to your computer and use it in GitHub Desktop.
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
function getConfig(request) { | |
const config = communityConnector.getConfig(); | |
config.newInfo() | |
.setId('instructions') | |
.setText('Enter Country Name to fetch university data.'); | |
config.newTextInput() | |
.setId('country') | |
.setName('Country') | |
.setHelpText('Enter the country for which you want to fetch university data.') | |
.setPlaceholder('USA') | |
.setAllowOverride(true); | |
return config.build(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment