class NotificationController < ApplicationController def index logger.info 'index' end def show_notice redirect_to notification_index_path, notice: 'this is a notice' end def show_alert redirect_to notification_index_path, alert: 'this is an alert' end end