Skip to content

Commit

Permalink
Edit app/controllers/concerns/hyrax/works_controller_behavior.rb
Browse files Browse the repository at this point in the history
  • Loading branch information
abelemlih authored and bwatson78 committed Jul 24, 2024
1 parent 59a42ad commit 3c47a2e
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions app/controllers/concerns/hyrax/works_controller_behavior.rb
Original file line number Diff line number Diff line change
Expand Up @@ -496,13 +496,14 @@ def save_permissions
end

def permissions_changed?
@saved_permissions !=
case curation_concern
when ActiveFedora::Base
curation_concern.permissions.map(&:to_hash)
else
Hyrax::AccessControl.for(resource: curation_concern).permissions
end
case curation_concern
when ActiveFedora::Base
@saved_permissions != curation_concern.permissions.map(&:to_hash)
else
new_permissions = Hyrax::AccessControl.for(resource: curation_concern).permissions
saved_permissions_set = @saved_permissions.to_set
new_permissions.size != @saved_permissions.size || new_permissions.any? { |e| !saved_permissions_set.include? e }
end
end

def concern_has_file_sets?
Expand Down

0 comments on commit 3c47a2e

Please sign in to comment.