Skip to content
This repository was archived by the owner on Jan 25, 2022. It is now read-only.

Added the unprotected root action support #77

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions ruby-runtime/lib/jenkins/model/unprotected_root_action.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

module Jenkins
module Model
class UnprotectedRootAction
include Jenkins::Model::Action
end
end
end
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
module Jenkins::Model
class UnprotectedRootActionProxy
include ActionProxy
include Java.hudson.model.UnprotectedRootAction
proxy_for Jenkins::Model::UnprotectedRootAction
end
end