gitlabhq/app/controllers/notifications_controller.rb

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