Newer
Older
from app.apis import item_response, list_response, protect_route
from flask_restx import Resource, reqparse
from flask_restx import reqparse
schema = TeamDTO.schema
list_schema = TeamDTO.list_schema
team_parser = reqparse.RequestParser()
team_parser.add_argument("name", type=str, location="json")
@protect_route(allowed_roles=["*"])
def get(self, competition_id):
items = dbc.get.team_list(competition_id)
@protect_route(allowed_roles=["*"])
item_team = dbc.add.team(args["name"], competition_id)
@api.route("/<team_id>")
@api.param("competition_id,team_id")
@protect_route(allowed_roles=["*"])
def get(self, competition_id, team_id):
item = dbc.get.team(competition_id, team_id)
return item_response(schema.dump(item))
@protect_route(allowed_roles=["*"])
def delete(self, competition_id, team_id):
item_team = dbc.get.team(competition_id, team_id)
@protect_route(allowed_roles=["*"])
def put(self, competition_id, team_id):
args = team_parser.parse_args(strict=True)
name = args.get("name")
item_team = dbc.get.team(competition_id, team_id)
item_team = dbc.edit.default(item_team, name=name, competition_id=competition_id)