File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -210,19 +210,19 @@ def submitted_to_rpc(self, request):
210210 Those queries overreturn - there may be things, particularly not from the IETF stream that are already in the queue.
211211 """
212212 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 (
214214 states__type_id__in = [
215215 "draft-stream-iab" ,
216216 "draft-stream-irtf" ,
217217 "draft-stream-ise" ,
218+ "draft-stream-editorial" ,
218219 ],
219220 states__slug__in = ["rfc-edit" ],
220221 )
221- # TODO: Need a way to talk about editorial stream docs
222222 docs = (
223223 self .get_queryset ()
224224 .filter (type_id = "draft" )
225- .filter (ietf_docs | irtf_iab_ise_docs )
225+ .filter (ietf_docs | irtf_iab_ise_editorial_docs )
226226 )
227227 serializer = self .get_serializer (docs , many = True )
228228 return Response (serializer .data )
You can’t perform that action at this time.
0 commit comments