8 lines
168 B
Ruby
8 lines
168 B
Ruby
class Notifications::SettingsController < ApplicationController
|
|
include FilterScoped
|
|
|
|
def show
|
|
@collections = Current.user.collections.alphabetically
|
|
end
|
|
end
|