Issue#15: Added Comment Notifications: notification_emails and comments view

This commit is contained in:
raluka 2015-07-17 18:55:47 +02:00
parent a73ca335a9
commit 38e8be8793
16 changed files with 155 additions and 13 deletions

View file

@ -0,0 +1,9 @@
module Admin
class CommentsController < Admin::BaseController
load_and_authorize_resource
def index
@ordered_events = Event.order(:title).all
end
end
end