Sha256: 9eb4dba59b419f89233a08c5a7e8e390966114de7e11c0a1c3398e7a4feef47c
Contents?: true
Size: 1.2 KB
Versions: 16
Compression:
Stored size: 1.2 KB
Contents
class <%= @target_prefix %>NotificationsWithDeviseController < ActivityNotification::NotificationsWithDeviseController # GET /:target_type/:target_id/notifications # def index # super # end # POST /:target_type/:target_id/notifications/open_all # def open_all # super # end # GET /:target_type/:target_id/notifications/:id # def show # super # end # DELETE /:target_type/:target_id/notifications/:id # def destroy # super # end # POST /:target_type/:target_id/notifications/:id/open # def open # super # end # GET /:target_type/:target_id/notifications/:id/move # def move # super # end # No action routing # This method needs to be public since it is called from view helper # def target_view_path # super # end # protected # def set_target # super # end # def set_notification # super # end # def set_index_options # super # end # def load_index # super # end # def controller_path # super # end # def set_view_prefixes # super # end # def return_back_or_ajax # super # end # def authenticate_devise_resource! # super # end # def authenticate_target! # super # end end
Version data entries
16 entries across 16 versions & 1 rubygems