-
Notifications
You must be signed in to change notification settings - Fork 17
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
Implement Access Control #98
Changes from 43 commits
e7ec9f5
ceaf482
0150a88
890a605
2964868
3ab796a
9462ec9
22ff869
4fc7002
ac5fd7b
bef4fa4
168e00b
f511307
9962b69
5703b4e
b4ae060
38a0835
10c75fd
079bd06
7726861
01c6251
33295a4
80ebd5d
1e81b43
8eae6f2
f540cb9
6bed461
1eebf15
e0164d8
4b0b841
36f0e6e
026e734
c1c71f4
9aa538a
69c82da
b197228
c31f335
2e69e88
c7d9bfc
afc0201
fb75b5c
bea770b
34f2672
abc5726
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
$settings['config_sync_directory'] = '../config/sync'; | ||
$settings['file_private_path'] = 'sites/default/private_files'; |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,10 +25,19 @@ | |
} | ||
} | ||
}, | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/digitalutsc/advanced_search.git" | ||
} | ||
{ | ||
"type": "package", | ||
"package": { | ||
"name": "islandora/advanced_search", | ||
"version": "2.0.0-beta3", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why specify this commit? The starter site should update with new versions (non-breaking). |
||
"type": "drupal-module", | ||
"source": { | ||
"url": "https://github.com/digitalutsc/advanced_search", | ||
"type": "git", | ||
"reference":"2.0.0-beta3" | ||
} | ||
} | ||
} | ||
], | ||
"require": { | ||
"php": "^7.4 || ^8", | ||
|
@@ -58,13 +67,16 @@ | |
"drupal/views_field_view": "^1.0@beta", | ||
"drush/drush": "^10.3", | ||
"islandora-rdm/islandora_fits": "dev-8.x-1.x as 1.x-dev", | ||
"islandora/advanced_search": "dev-contrib", | ||
"islandora/advanced_search": "^2.0.0@beta", | ||
"islandora/controlled_access_terms": "^2", | ||
"islandora/islandora": "^2.8.1", | ||
"islandora/openseadragon": "^2", | ||
"islandora/views_nested_details": "^1.0", | ||
"library/pdf.js": "^2.4", | ||
"mjordan/islandora_workbench_integration": "^1.0" | ||
"mjordan/islandora_workbench_integration": "^1.0", | ||
"digitalutsc/group_solr": "^1.0.0-beta", | ||
"digitalutsc/islandora_group": "^1.0.0-beta", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. usually the syntax is @beta (2 lines)/ There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed with the commit kylehuynh205@abc5726 |
||
"digitalutsc/private_files_adapter": "^1.0.0@beta" | ||
}, | ||
"conflict": { | ||
"drupal/drupal": "*", | ||
|
@@ -127,7 +139,11 @@ | |
"type:drupal-custom-theme" | ||
] | ||
}, | ||
"patches": {} | ||
"patches": { | ||
"islandora/openseadragon": { | ||
"openseadragon.authentication.patch": "https://raw.githubusercontent.com/digitalutsc/private_files_adapter/main/scripts/openseadragon.authentication.patch" | ||
} | ||
} | ||
}, | ||
"scripts": { | ||
"post-root-package-install": ["Islandora\\StarterSite::rootPackageInstall"] | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Starter Site is not specific to ISLE-dc.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will test it with playbook and isle-site-template as well.