You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

13 lines
283 B

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