Skip to content

Commit

Permalink
Mark plugin actions as persistent to allow more efficient retrieval
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-tkachenko-datadog committed Feb 1, 2024
1 parent 4683b2f commit d93e522
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,10 @@

import hudson.model.InvisibleAction;
import java.io.Serializable;
import org.jenkinsci.plugins.workflow.actions.PersistentAction;

/**
* Marker interface for all actions that are added by the plugin
*/
public abstract class DatadogPluginAction extends InvisibleAction implements Serializable {
public abstract class DatadogPluginAction extends InvisibleAction implements PersistentAction, Serializable {
}

0 comments on commit d93e522

Please sign in to comment.