Files
nairobi/app/helpers/followables_helper.rb
2025-08-22 13:25:50 +02:00

6 lines
149 B
Ruby

module FollowablesHelper
def find_or_build_follow(user, followable)
Follow.find_or_initialize_by(user: user, followable: followable)
end
end