@atlaskit/mention
Version:
A React component used to display user profiles in a list for 'Mention' functionality
11 lines • 392 B
JavaScript
export const config = {
getRecommendationServiceUrl(baseUrl) {
return baseUrl ? `/${baseUrl}/v1/recommendations` : '/gateway/api/v1/recommendations';
},
getUsersServiceUrl(productKey) {
return productKey === 'jira' ? '/rest/api/3/user/bulk' : '/wiki/rest/api/user/bulk';
},
getGraphQLUrl(baseUrl) {
return baseUrl ? `/${baseUrl}/graphql` : '/gateway/api/graphql';
}
};