Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[SDPAP-8964] Added "Audit Files" module to assist content authors to identify anomalies with managed files #476

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
"jquery/textcounter": "0.9.1",
"drupal/address": "^1.4",
"drupal/allowed_formats": "^2.0",
"drupal/auditfiles": "*",
"drupal/better_exposed_filters": "^6.0",
"drupal/clamav": "2.0.2-rc1",
"drupal/config_ignore": "^2.4",
Expand Down
1 change: 1 addition & 0 deletions tide_core.info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ core_version_requirement: ^9 || ^10
dependencies:
- address:address
- allowed_formats:allowed_formats
- auditfiles:auditfiles
- better_exposed_filters:better_exposed_filters
- ckeditor5_embedded_content:ckeditor5_embedded_content
- clamav:clamav
Expand Down
7 changes: 7 additions & 0 deletions tide_core.install
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,10 @@ function tide_core_update_10004() {
user_role_revoke_permissions($role, $permissions);
}
}

/**
* Enable auditfiles module.
*/
function tide_core_update_10005() {
\Drupal::service('module_installer')->install(['auditfiles']);
}
Loading