Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #2811 - Fixes mime type for some endpoints #2812

Merged
merged 3 commits into from
Mar 7, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 3 additions & 5 deletions webcompat/api/endpoints.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ def get_user_activity_issues(username, parameter):
else:
params[parameter] = username
path = 'repos/{path}'.format(path=ISSUES_PATH)
return api_request('get', path, params=params, mime_type=JSON_MIME_HTML)
return api_request('get', path, params=params)


@api.route('/issues/category/<issue_category>')
Expand All @@ -129,12 +129,10 @@ def get_issue_category(issue_category, other_params=None):
if issue_category in category_list:
STATUSES = app.config['STATUSES']
params.add('milestone', STATUSES[issue_category]['id'])
return api_request('get', issues_path, params=params,
mime_type=JSON_MIME_HTML)
return api_request('get', issues_path, params=params)
elif issue_category == 'closed':
params['state'] = 'closed'
return api_request('get', issues_path, params=params,
mime_type=JSON_MIME_HTML)
return api_request('get', issues_path, params=params)
else:
# The path doesn’t exist. 404 Not Found.
abort(404)
Expand Down