#4281 [cli] list-repo-requests
Opened by tkopecek. Modified
tkopecek/koji cli-repo-requests  into  master

Download 4281.patch

Basic monitoring command. It is for further discussion if displayed fields are the best ones (+ unit tests later)

Should probably at least allow filtering by tag

Web side: #4269

    with session.multicall() as m:
        for req in requests:
            tags.append(m.getTag(req['tag_id']))

You don't need to go to all this effort. They query view will return more fields if you ask for them. E.g. pass fields=['*', 'tag_name'] or just fields='**'

Metadata