mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
10 lines
247 B
Ruby
10 lines
247 B
Ruby
class Admin::EmailsController < Admin::ApplicationController
|
|
def show
|
|
end
|
|
|
|
def create
|
|
AdminEmailsWorker.perform_async(params[:recipients], params[:subject], params[:body])
|
|
redirect_to admin_email_path, notice: 'Email sent'
|
|
end
|
|
end
|