Flowdock
method

missing_credentials_message

Importance_0
v5.2.3 - Show latest stable - 0 notes - Class: CredentialsCommand
missing_credentials_message() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File railties/lib/rails/commands/credentials/credentials_command.rb, line 70
        def missing_credentials_message
          if Rails.application.credentials.key.nil?
            "Missing master key to decrypt credentials. See bin/rails credentials:help"
          else
            "No credentials have been added yet. Use bin/rails credentials:edit to change that."
          end
        end
Register or log in to add new notes.