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

🐛 Rework ability logic for depositor #884

Merged
merged 1 commit into from
Oct 20, 2023
Merged
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: 0 additions & 1 deletion app/models/ability.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ class Ability
user_roles
work_roles
featured_collection_abilities
everyone_can_create_curation_concerns
]
# If the Groups with Roles feature is disabled, allow registered users to create curation concerns
# (Works, Collections, and FileSets). Otherwise, omit this ability logic as to not
Expand Down
2 changes: 1 addition & 1 deletion app/models/concerns/hyrax/ability/work_ability.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def work_roles
doc = permissions_doc(id)
all_work_types_and_files.include?(doc.hydra_model)
end
elsif work_depositor?
elsif work_depositor? || admin_set_with_deposit?
can %i[create], all_work_types_and_files
end
end
Expand Down
Loading