Giter VIP home page Giter VIP logo

Comments (8)

wolfg1969 avatar wolfg1969 commented on May 18, 2024

I need this feature too. Seems the 'body_params' has no chance to be appended to params.

https://github.com/marcgibbons/django-rest-swagger/blob/master/rest_framework_swagger/introspectors.py#L143-L147

from django-rest-swagger.

youngrok avatar youngrok commented on May 18, 2024

👍 I also need this, too. DRF already support this.

from django-rest-swagger.

ariovistus avatar ariovistus commented on May 18, 2024

you can sorta do this with yaml like so:

@api_view(['POST'])
def drop_cigar_in_jambalaya(request):
   """
   Make a cigar jambalaya
   ---
   parameters:
       - name: stuff
         paramType: body
         type: CigarJambalayaSerializer
   """

the only hitch is CigarJambalayaSerializer needs to be specified in request_serializer, etc, or else it doesn't make it into models. However, we can add a field "pytype" that ensures this, and also does python name resolution:

@api_view(['POST'])
def drop_cigar_in_jambalaya(request):
   """
   Make a cigar jambalaya
   ---
   parameters:
       - name: stuff
         paramType: body
         pytype: ..serializers.CigarJambalayaSerializer
   """

.. PR coming!

from django-rest-swagger.

wolfg1969 avatar wolfg1969 commented on May 18, 2024

@ariovistus Thanks! I got it.

from django-rest-swagger.

wolfg1969 avatar wolfg1969 commented on May 18, 2024

I also get the header parameters worked.

    @list_route(methods=['post'])
    def invite(self, request):
        """
        Send invitation

        ---
            invite:
            omit_serializer: false
            omit_parameters:
                - form
            parameters:
                - name: Authorization
                  paramType: header
                  required: true
                - name: invitation
                  paramType: body
                  pytype: ..serializers.MessageSerializer
                  required: true
        """

from django-rest-swagger.

ariovistus avatar ariovistus commented on May 18, 2024

#185

from django-rest-swagger.

ariovistus avatar ariovistus commented on May 18, 2024

is in 0.2.8 release

from django-rest-swagger.

prafulbagai avatar prafulbagai commented on May 18, 2024

How do I do it? I couldn;t find it anywhere in the docs.

from django-rest-swagger.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.