Closed NormalDuck closed 3 weeks ago
6 new API endpoints:
add team
Team Properties
add match
Matches
update team
update match
fetch match
fetch team
I may change Team Properties into Team for the collection name. Also might deprecate upload-draft API endpoint.
Team
upload-draft
To access the API endpoints in your local version use: localhost:YOUR_HOST/api/YOUR_ENDPOINT
One of the commits contains a major refactoring of the codebase again to make the structure of the project more logical
6 new API endpoints:
add team
: adds a new team toTeam Properties
collection (if there is a existing team in the collection, it will error)add match
: adds a new match toMatches
collection (if there is a existing match in the collection, it will error)update team
: updates a existing team underTeam Properties
collection (if there isn't a existing team, it will error)update match
: updates a existing match underMatches
collection (if there isn't a existing match, it will error)fetch match
: fetchesMatches
in with array of query (not tested, unsure if it works)fetch team
: fetchesTeam Properties
in with array of query (not tested, unsure if it works)I may change
Team Properties
intoTeam
for the collection name. Also might deprecateupload-draft
API endpoint.To access the API endpoints in your local version use: localhost:YOUR_HOST/api/YOUR_ENDPOINT
One of the commits contains a major refactoring of the codebase again to make the structure of the project more logical