Repository URL to install this package:
|
Version:
0.0.2 ▾
|
module NeotericDeploy
class NotificationController < ApplicationController
def fire
mailer.notify(recipients).deliver
render :nothing => true
end
private
def recipients
NeotericDeploy.email_recipients
end
def mailer
Mailer
end
end
end