Retrospring/app/controllers/notifications_controller.rb

8 lines
139 B
Ruby
Raw Normal View History

2014-12-09 13:35:11 -08:00
class NotificationsController < ApplicationController
2014-12-12 08:54:13 -08:00
before_filter :authenticate_user!
2014-12-09 13:35:11 -08:00
def index
2014-12-14 06:17:52 -08:00
@type = params[:type]
2014-12-09 13:35:11 -08:00
end
end