Commit b6dd4286 authored by George's avatar George
Browse files

Issue #3265729 by geoanders: Integrate with Key module.

parent 5af097f2
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -4,3 +4,5 @@ description: 'This module creates a stream wrapper scheme in order to store file
core_version_requirement: ^8.8 || ^9.0
package: 'Microsoft Azure'
configure: az_blob_fs.settings_form
dependencies:
  - key:key
+1 −1
Original line number Diff line number Diff line
services:
  az_blob_fs:
    class: Drupal\az_blob_fs\AzBlobFsService
    arguments: [ '@database', '@config.factory' ]
    arguments: [ '@database', '@config.factory', '@key.repository' ]
  stream_wrapper.az_blob_fs:
    class: Drupal\az_blob_fs\StreamWrapper\AzBlobFsStream
    calls:
+1 −0
Original line number Diff line number Diff line
@@ -30,6 +30,7 @@
    },
    "require": {
        "drupal/core": "^8.8 || ^9.0",
        "drupal/key": "^1.15",
        "microsoft/azure-storage-blob": "^1.5"
    }
}
+1 −1
Original line number Diff line number Diff line
@@ -3,4 +3,4 @@ az_blob_container_name: ''
az_blob_local_ip: ''
az_blob_local_port: ''
az_blob_local_emulator: 0
az_blob_account_key: ''
az_blob_account_key_name: ''
+2 −2
Original line number Diff line number Diff line
@@ -18,6 +18,6 @@ az_blob_fs.settings:
    az_blob_local_emulator:
      type: integer
      label: 'Emulator Mode - Emulator Flag'
    az_blob_account_key:
    az_blob_account_key_name:
      type: string
      label: 'Account Key'
      label: 'Account Key Name'
Loading