List of issues associated with their ids.

Property definitions

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