Merge pull request #14391 from edx/renzo/ignore-publication-status

Ignore run publication status when requesting programs from the catalog
This commit is contained in:
Renzo Lucioni
2017-01-25 12:19:24 -05:00
committed by GitHub
2 changed files with 0 additions and 2 deletions

View File

@@ -50,7 +50,6 @@ class TestGetPrograms(mixins.CatalogIntegrationMixin, TestCase):
querystring = {
'marketable': 1,
'exclude_utm': 1,
'published_course_runs_only': 1,
}
if type:
querystring['type'] = type

View File

@@ -58,7 +58,6 @@ def get_programs(user=None, uuid=None, type=None): # pylint: disable=redefined-
querystring = {
'marketable': 1,
'exclude_utm': 1,
'published_course_runs_only': 1,
}
if type:
querystring['type'] = type