Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/jira

src/list-sites.js

11 lines · 333 B · JavaScript
import { listSites } from './jira.js'

/**
 * List Jira Cloud sites granted to the OAuth token, or the configured API-token site.
 * @example
 * import listSites from 'kody:@kody/jira/list-sites'
 * const result = await listSites()
 */
export default async function listSitesEntrypoint(input = {}) {
	return await listSites(input)
}