some css update and and email fork removed
This commit is contained in:
parent
8c9f3125f7
commit
70b5bb6606
|
@ -1,5 +1,5 @@
|
||||||
@charset "utf-8";
|
@charset "utf-8";
|
||||||
|
@import 'ticket_variables';
|
||||||
#filter {
|
#filter {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -186,8 +186,9 @@ class Admin::TicketsController < OrbitAdminController
|
||||||
response.user_tags = params[:user_tags] if params[:user_tags].present?
|
response.user_tags = params[:user_tags] if params[:user_tags].present?
|
||||||
response.save
|
response.save
|
||||||
if params[:user_tags].present?
|
if params[:user_tags].present?
|
||||||
p1 = fork { send_notification_emails(response, tq.ticket) }
|
send_notification_emails(response, tq.ticket)
|
||||||
Process.detach(p1)
|
# p1 = fork { send_notification_emails(response, tq.ticket) }
|
||||||
|
# Process.detach(p1)
|
||||||
end
|
end
|
||||||
tq.ticket_query_responses << response
|
tq.ticket_query_responses << response
|
||||||
render :partial => "response", :object => response
|
render :partial => "response", :object => response
|
||||||
|
|
Loading…
Reference in New Issue