Files
fizzy/app/controllers/notifications/settings_controller.rb
T
2025-02-27 12:17:32 +00:00

8 lines
156 B
Ruby

module Notifications
class SettingsController < ApplicationController
def show
@buckets = Current.user.buckets.alphabetically
end
end
end