def fetch_visible_projects()

in jbi/jira/service.py [0:0]


    def fetch_visible_projects(self) -> list[str]:
        """Return list of projects that are visible with the configured Jira credentials"""

        projects = self.client.permitted_projects()
        return [project["key"] for project in projects]