Nickarmani03 / WhoDunIt-Client

0 stars 0 forks source link

Nwm movies fix #25

Closed Nickarmani03 closed 3 years ago

Nickarmani03 commented 3 years ago

Description of PR that completes issue here... this issue was that the movies weren't able to be updated and saved correctly. i have updated the keys that are being updated in the update and in the movie Serializer. the client would also like to see pictures uploaded to show what movie they are viewing in the movieViews.

Changes

Requests / Responses

Request

POST /movie Creates a new movie

{
            "name": "Murder on the Orient Express",
            "year": "2017",
            "description": "When a murder occurs on the train on which he's travelling, celebrated detective Hercule Poirot is recruited to solve the case.",
            "genre": 6,
            "player": 1,
            "number_of_players": 2,
            "director": "Kenneth Branagh",
            "rating": "PG-13",
            "suspect": 9,
            "movie_image_url": "https://s3.amazonaws.com/saportakinsta/wp-content/uploads/2017/11/3.jpg"
        }

Response

HTTP/1.1 201 OK

{
            "name": "Murder on the Orient Express",
            "year": "2017",
            "description": "When a murder occurs on the train on which he's travelling, celebrated detective Hercule Poirot is recruited to solve the case.",
            "genre": 6,
            "player": 1,
            "number_of_players": 2,
            "director": "Kenneth Branagh",
            "rating": "PG-13",
            "suspect": 9,
            "movie_image_url": "https://s3.amazonaws.com/saportakinsta/wp-content/uploads/2017/11/3.jpg"
        }

Testing

Description of how to test code...