-
Notifications
You must be signed in to change notification settings - Fork 899
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18137 from yrudman/set-service-retierement-date-o…
…n-global-region Allow to set retirement date for service via Centralized Administration (cherry picked from commit f2016e8) Fixes https://bugzilla.redhat.com/show_bug.cgi?id=1648991
- Loading branch information
Showing
3 changed files
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module Service::Operations | ||
extend ActiveSupport::Concern | ||
|
||
include_concern 'Lifecycle' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
module Service::Operations::Lifecycle | ||
extend ActiveSupport::Concern | ||
|
||
included do | ||
api_relay_method :retire do |options| | ||
options | ||
end | ||
end | ||
end |