-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(storage): rename conversions (#1407)
* Rename conversions from `ToSchema` and `FromSchema` to `ToJSON` and `FromJSON`. * The namespaces `ProposalSettingsConversion` and `VolumeConversion` are renamed as `ProposalSettingsConversions` and `VolumeConversions`. * Conversion methods are moved from the namespace modules to the `ProposalSettings` and `Volume` classes. Note: conversions under `Agama::DBus::Storage` namespace are not modified because they are going to be removed in future iterations.
- Loading branch information
Showing
29 changed files
with
361 additions
and
434 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
This file was deleted.
Oops, something went wrong.
33 changes: 33 additions & 0 deletions
33
service/lib/agama/storage/proposal_settings_conversions.rb
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,33 @@ | ||
# frozen_string_literal: true | ||
|
||
# Copyright (c) [2024] SUSE LLC | ||
# | ||
# All Rights Reserved. | ||
# | ||
# This program is free software; you can redistribute it and/or modify it | ||
# under the terms of version 2 of the GNU General Public License as published | ||
# by the Free Software Foundation. | ||
# | ||
# This program is distributed in the hope that it will be useful, but WITHOUT | ||
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
# more details. | ||
# | ||
# You should have received a copy of the GNU General Public License along | ||
# with this program; if not, contact SUSE LLC. | ||
# | ||
# To contact SUSE LLC about this file by physical or electronic mail, you may | ||
# find current contact information at www.suse.com. | ||
|
||
require "agama/storage/proposal_settings_conversions/from_json" | ||
require "agama/storage/proposal_settings_conversions/from_y2storage" | ||
require "agama/storage/proposal_settings_conversions/to_json" | ||
require "agama/storage/proposal_settings_conversions/to_y2storage" | ||
|
||
module Agama | ||
module Storage | ||
# Conversions for the proposal settings. | ||
module ProposalSettingsConversions | ||
end | ||
end | ||
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
Oops, something went wrong.