This repository has been archived on 2024-03-16. You can view files and clone it, but cannot push or open issues or pull requests.
orbit-4-1/app/helpers/desktop/co_author_relations_helper.rb

9 lines
251 B
Ruby

module Desktop::CoAuthorRelationsHelper
def reset_co_author_relation relation
co_author = CoAuthor.where(co_author_relations_id: relation)
co_author.map do |c|
co_author.update_attributes(co_author_relations_id: nil)
end
end
end