Class: Fastlane::Actions::FlintChangePasswordAction
- Inherits:
-
FlintAction
- Object
- Action
- FlintAction
- Fastlane::Actions::FlintChangePasswordAction
- Defined in:
- lib/fastlane/plugin/flint/actions/flint_change_password.rb
Class Method Summary collapse
Methods inherited from FlintAction
authors, available_options, description, details, fetch_keystore, is_supported?
Class Method Details
.run(params) ⇒ Object
7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/fastlane/plugin/flint/actions/flint_change_password.rb', line 7 def self.run(params) params.load_configuration_file('Flintfile') FastlaneCore::PrintTable.print_values(config: params, hide_keys: [:workspace], title: "Summary for flint #{Fastlane::VERSION}") Flint::ChangePassword.update(params: params) UI.success("Successfully changed the password. Make sure to update the password on all your clients and servers") end |