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

Fix a problem of operation expand. #600

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion flask_restplus/swagger.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals, absolute_import

from uuid import uuid1

import itertools
import re

Expand Down Expand Up @@ -352,7 +354,7 @@ def serialize_operation(self, doc, method):
'responses': self.responses_for(doc, method) or None,
'summary': doc[method]['docstring']['summary'],
'description': self.description_for(doc, method) or None,
'operationId': self.operation_id_for(doc, method),
'operationId': '%s-%s' % (self.operation_id_for(doc, method), str(uuid1())[:6]),
'parameters': self.parameters_for(doc[method]) or None,
'security': self.security_for(doc, method),
}
Expand Down