Files
fizzy/app/controllers/notifications/settings_controller.rb
T
2025-04-09 14:50:58 +02:00

8 lines
164 B
Ruby

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