kayomn.net/static/scripts/gitea.js

12 lines
452 B
JavaScript

const apiURL = "https://sauce.pizzawednes.day/api/v1/"
const jsonify = response => response.json()
/**
* Fetches a manifest of all public Github repositories belonging to a given user.
*
* @param {string} username Identifier of the target Github user.
* @returns @see Promise of an array containing all public repository metadata for a given user.
*/
export const fetchRepos = username => fetch(`${apiURL}users/${username}/repos`).then(jsonify)