Skip to content

Commit

Permalink
remove XML keys
Browse files Browse the repository at this point in the history
```
    google_storage_access_key_id: ENV["GOOGLE_STORAGE_KEY"] || '' ,
    google_storage_secret_access_key: ENV["GOOGLE_STORAGE_SECRET"] || ''
```
  • Loading branch information
jywarren authored Jul 13, 2021
1 parent 493922e commit cfb3c4d
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions config/initializers/paperclip.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
provider: ENV["FOG_PROVIDER"] || "Local",
local_root: "#{Rails.root}/public",
google_project: 'public-lab' ,
google_json_key_location: ENV["GOOGLE_JSON_KEY_FILE"] || '' ,
google_storage_access_key_id: ENV["GOOGLE_STORAGE_KEY"] || '' ,
google_storage_secret_access_key: ENV["GOOGLE_STORAGE_SECRET"] || ''
google_json_key_location: ENV["GOOGLE_JSON_KEY_FILE"] || ''
}
Paperclip::Attachment.default_options[:fog_host] = ""

0 comments on commit cfb3c4d

Please sign in to comment.