how to hook my own actions when team area created?
When a team area created, I want to invoke a action of my own to do something, how to implement that? Is there a extension point like com.ibm.team.process.service.projectAreaInitializers for project area?
One possible way I know is to use follow up actions for operation: com.ibm.team.process.server.saveTeamArea, but it can't handle the root team area
Also, the event handler of team area doesn't work
One possible way I know is to use follow up actions for operation: com.ibm.team.process.server.saveTeamArea, but it can't handle the root team area
Also, the event handler of team area doesn't work
Accepted answer
In the latest Foundation code, the
com.ibm.team.process.server.saveTeamArea operation is run for both root
and non-root team areas. So you can use a follow-up action.
Jared Burns
Jazz Process Team
alexgreenbar wrote:
com.ibm.team.process.server.saveTeamArea operation is run for both root
and non-root team areas. So you can use a follow-up action.
Jared Burns
Jazz Process Team
alexgreenbar wrote:
When a team area created, I want to invoke a action of my own to do
something, how to implement that? Is there a extension point like
com.ibm.team.process.service.projectAreaInitializers for project
area?
One possible way I know is to use follow up actions for operation:
com.ibm.team.process.server.saveTeamArea, but it can't handle the
root team area
Also, the event handler of team area doesn't work