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