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.
|
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
|