Hey Skylar,
I was really hoping to get the additional column in the
GET /lenders/:lender_id/teams
result set.
my app starts by asking the user their lender_id and then fetches
which teams they belong too. I then need to establish which teams (if
any at all) that user captains.
Having that extra flag in the lender_id/teams request would save N
extra requests ( N = number of teams user belongs too) and a lot of
coding on my side.
But having thought about it a little more I realize adding another
field to an existing data set could possibly create problems with
other developers applications.
perhaps on top of method you suggested we could have another method
GET /lenders/:lender_id/teams_iscap/
which would return only the teams that user captains.
I'm definitely for /teams/:id/captains method though. I'm pretty
sure I would make use of that somewhere in my app.
Amol