List of milestones associated with their ids.

Property definitions

github $ GithubAPI :: get_repo_milestones
	# List of milestones associated with their ids.
	fun get_repo_milestones(repo_slug: String, page, per_page: nullable Int): Array[Milestone] do
		return new GithubArray[Milestone].from(get(
			"/repos/{repo_slug}/milestones?{pagination(page, per_page)}"))
	end
lib/github/api.nit:254,2--258,4