12 lines
207 B
Ruby
12 lines
207 B
Ruby
class NotificationsController < ApplicationController
|
|
layout 'profile'
|
|
|
|
def show
|
|
@notification = current_user.notification
|
|
end
|
|
|
|
def update
|
|
@notification = current_user.notification
|
|
end
|
|
end
|