Skip to content

Commit

Permalink
deleting old info
Browse files Browse the repository at this point in the history
  • Loading branch information
mr-exz committed Dec 30, 2024
1 parent 79b6a3d commit a15ce91
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 18 deletions.
18 changes: 1 addition & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
Is a plugin for project management system Redmine.
Allows you to store various passwords/keys in one place for the project.

# About

https://noshutdown.ru/en/redmine-plugins-vault/#about

# Installation

```
Expand All @@ -16,21 +12,9 @@ https://noshutdown.ru/en/redmine-plugins-vault/#about
# bundle install --without development test
# rake redmine:plugins:migrate RAILS_ENV=production
```
* **For Redmine older version 4.2** `Rails.application.config.assets.precompile += %w( zeroclipboard.js )`
to `config/initializers/assets.rb` and restart your server.

* After installing a plugin, open the settings ( http://*/settings/plugin/vault )
and enter encryption key in the Encryption key field.

* Or use encryption Redmine Encryption, to do this,
add the encryption key to a file ( config/configuration.yml ), for example ( database_cipher_key: HediddAwkAbCunnoashtAlEcBuobdids ) and check the box on the Use Redmine Encryption.

Read more: https://noshutdown.ru/en/redmine-plugins-vault/#install

# Screenshots

https://noshutdown.ru/en/redmine-plugins-vault/#screens

# Releases

https://noshutdown.ru/en/redmine-plugins-vault/#releases
add the encryption key to a file ( config/configuration.yml ), for example ( database_cipher_key: HediddAwkAbCunnoashtAlEcBuobdids ) and check the box on the Use Redmine Encryption.
2 changes: 1 addition & 1 deletion app/controllers/keys_controller.rb
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def all
else
@keys = @keys = Vault::Key.all
end

@keys = @keys.order(sort_clause) unless @keys.nil?
@keys = @keys.select { |key| key.whitelisted?(User,key.project) } unless @keys.nil?
@keys = [] if @keys.nil? #hack for decryption
Expand Down

0 comments on commit a15ce91

Please sign in to comment.