class Fastlane::Actions::FlintChangePasswordAction
Public Class Methods
run(params)
click to toggle source
# 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