github / gh-classroom

GitHub Classroom CLI Extension is a powerful and easy-to-use command line tool that enhances the functionality of the GitHub CLI, specifically tailored for educators using GitHub Classroom.
MIT License
82 stars 13 forks source link

Feature Request: Include Roster Identifier in output of `accepted-assignments` #9

Open kleinernik opened 1 year ago

kleinernik commented 1 year ago

I would be helpful to include the Roster Identifier in output of accepted-assignments. For now it only includes the GitHub-username under the column student (which maybe also should be named GitHub-username?).

shanep commented 1 year ago

A recent update added the AssignmentGrade struct that contained the roster identifier of a student. It would be super helpful if the Student struct also had this field as shown below. That would enable this feature to be completed and several other cool features to be done :)

type Student struct {
    Id        int    `json:"id"`
    Login     string `json:"login"`
        RosterIdentifier      string `json:"roster_identifier"`
    AvatarUrl string `json:"avatar_url"`
    HtmlUrl   string `json:"html_url"`
}
shanep commented 11 months ago

Waiting on issue #48