Re: How to create projectAction

2019-05-15 Thread selva vignesh
Yes... I have transiantAction Factory. Problem is I have 2 post Action so i have called the Project Action class on both. So both Action Url are shown in UI. I want to make it this only one for Project Thanks On Wed, May 15, 2019 at 7:45 PM Markus Winter wrote: > Create your own

Re: How to create projectAction

2019-05-15 Thread Markus Winter
Create your own TransientActionFactory to inject the action to all projects. On 15.05.2019 16:05, selva vignesh wrote: Hi All,   I have create Build Level Action and its successfully working. I want to create Project Level Action so that i have created ProjectAction and done what ever i want.

Re: How to create projectAction

2019-05-15 Thread Ullrich Hafner
You need to implement LastBuildAction and then override this method in your existing action: @Override public Collection getProjectActions() { return Collections.singleton(new AggregatedTrendAction(owner.getParent())); } Example: