gitlabhq/app/controllers/notifications_controller.rb
2013-03-27 19:04:29 +02:00

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