@@ -210,19 +210,19 @@ def submitted_to_rpc(self, request): | |||
| 210 | 210 | Those queries overreturn - there may be things, particularly not from the IETF stream that are already in the queue. | |
| 211 | 211 | """ | |
| 212 | 212 | ietf_docs = Q(states__type_id="draft-iesg", states__slug__in=["ann"]) | |
| 213 | - irtf_iab_ise_docs = Q( | ||
| 213 | + irtf_iab_ise_editorial_docs = Q( | ||
| 214 | 214 | states__type_id__in=[ | |
| 215 | 215 | "draft-stream-iab", | |
| 216 | 216 | "draft-stream-irtf", | |
| 217 | 217 | "draft-stream-ise", | |
| 218 | + "draft-stream-editorial", | ||
| 218 | 219 | ], | |
| 219 | 220 | states__slug__in=["rfc-edit"], | |
| 220 | 221 | ) | |
| 221 | - # TODO: Need a way to talk about editorial stream docs | ||
| 222 | 222 | docs = ( | |
| 223 | 223 | self.get_queryset() | |
| 224 | 224 | .filter(type_id="draft") | |
| 225 | - .filter(ietf_docs | irtf_iab_ise_docs) | ||
| 225 | + .filter(ietf_docs | irtf_iab_ise_editorial_docs) | ||
| 226 | 226 | ) | |
| 227 | 227 | serializer = self.get_serializer(docs, many=True) | |
| 228 | 228 | return Response(serializer.data) | |
0 commit comments