RTC sever side api to fetch team area members from RTC project area.
Hi All,
I am creating one server side plugin to fetch the team area members.
In this plugin we are unable to get the team area in server side.
from client side we can get it using,
ITeamArea teamArea = (ITeamArea) repository.itemManager().fetchCompleteItem(handle, IItemManager.DEFAULT, null);
how to get the team area in server side plugin?
can anyone help us for the same.
how to get the team area in server side plugin?
can anyone help us for the same.
2 answers
As https://rsjazz.wordpress.com/2012/11/30/a-create-approval-work-item-save-participant/ shows, you don't need to resolve any of the contributor handles in order to fetch the members and use them.
In case you have to, try com.ibm.team.repository.service.IRepositoryItemService
The API you use above is CLIENT API I would suggest you look into https://rsjazz.wordpress.com/2013/03/14/what-apis-are-available-for-rtc-and-what-can-you-extend/
It seems to be a duplicate of RTC Reportable API - Get list of teams' members for a project?