Skip to content

Commit a15ce91

Browse files
committed
deleting old info
1 parent 79b6a3d commit a15ce91

File tree

2 files changed

+2
-18
lines changed

2 files changed

+2
-18
lines changed

README.md

+1-17
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
Is a plugin for project management system Redmine.
44
Allows you to store various passwords/keys in one place for the project.
55

6-
# About
7-
8-
https://noshutdown.ru/en/redmine-plugins-vault/#about
9-
106
# Installation
117

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

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

2519
* Or use encryption Redmine Encryption, to do this,
26-
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.
27-
28-
Read more: https://noshutdown.ru/en/redmine-plugins-vault/#install
29-
30-
# Screenshots
31-
32-
https://noshutdown.ru/en/redmine-plugins-vault/#screens
33-
34-
# Releases
35-
36-
https://noshutdown.ru/en/redmine-plugins-vault/#releases
20+
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.

app/controllers/keys_controller.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ def all
9595
else
9696
@keys = @keys = Vault::Key.all
9797
end
98-
98+
9999
@keys = @keys.order(sort_clause) unless @keys.nil?
100100
@keys = @keys.select { |key| key.whitelisted?(User,key.project) } unless @keys.nil?
101101
@keys = [] if @keys.nil? #hack for decryption

0 commit comments

Comments
 (0)