8 lines
156 B
Ruby
8 lines
156 B
Ruby
module Notifications
|
|
class SettingsController < ApplicationController
|
|
def show
|
|
@buckets = Current.user.buckets.alphabetically
|
|
end
|
|
end
|
|
end
|