Files
fizzy/app/controllers/readings_controller.rb
T
2025-01-13 14:21:47 +00:00

9 lines
219 B
Ruby

class ReadingsController < ApplicationController
include BubbleScoped, BucketScoped
def create
@notifications = Current.user.notifications.where(bubble: @bubble)
@notifications.update(read: true)
end
end