Skip to content

Commit

Permalink
Merge pull request #884 from scientist-softserv/i864-rework-depositor…
Browse files Browse the repository at this point in the history
…-role-logic

🐛 Rework ability logic for depositor
  • Loading branch information
kirkkwang authored Oct 20, 2023
2 parents 6440443 + 40270a4 commit a81daba
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
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

0 comments on commit a81daba

Please sign in to comment.