wariacik
wariacik

Reputation: 345

Extend Visual Studio Team Services (was TFS Online)

I am looking for possibilities to extend a standard view of workitem/backlog item page. Basically I would like to add some additional fields. Right now there are Fields like:

I don't have access to the TFS server. I've got access just to the website/api. I think that to do this I would have to query API and get all the tfs data and copy it to my database, synchronize that database with a website every 30 min and build some kind of interface on the top of it.

Do you think that there are better ways to do this without duplicating tfs website using a webapi? I was thinking about Lightswitch and Odata/WCF RIA Service so I don't have to deal with the synchronization process and I can just query the tfs data on the fly? Does tfs support this?

If it doesn't what is the best way to copy the Team Services workitems view?

If you have any ideas how to use a tfs data with some customized interface then please let me know.

Upvotes: 0

Views: 96

Answers (1)

Daniel Mann
Daniel Mann

Reputation: 58981

You can accomplish what you want to do by modifying the process template. This will allow you to add additional work item types, add additional fields to existing work items, and generally alter the way work items appear and are managed.

Upvotes: 1

Related Questions