Skip to content

Instantly share code, notes, and snippets.

@dimitrispaxinos
Created September 6, 2023 11:47
Show Gist options
  • Save dimitrispaxinos/bfb7d7c544abf2ac25de7131e18d5f3c to your computer and use it in GitHub Desktop.
Save dimitrispaxinos/bfb7d7c544abf2ac25de7131e18d5f3c to your computer and use it in GitHub Desktop.
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