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