gitlabhq/app/controllers/notifications_controller.rb

12 lines
207 B
Ruby
Raw Normal View History

2013-03-27 18:04:29 +01:00
class NotificationsController < ApplicationController
layout 'profile'
def show
@notification = current_user.notification
end
def update
@notification = current_user.notification
end
end