ish_manager 0.1.8.464 → 0.1.8.465
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/app/controllers/ish_manager/invoices_controller.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4d91941f9fc2e9e5bb08b1ab6f12f69de1350b6760b6464afafadf2cb7dac91d
|
4
|
+
data.tar.gz: '094c5bb30096222105f1324259c7a3998acc23f641feeb2bc85af16475543413'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e05720b0f2baae54d689bfda6fee1710fe5c118e6e0f22d285efc3429bb2951bdfef2af6a4da051b835fb883a4156b80b8f557f8818602215cc6e2bc4c0a4304
|
7
|
+
data.tar.gz: f7c043b63480881d1ecafc98721bc7766aec1f4bb4d7bafc6ec93aa5c9d619367f46422b63537a987c14079489159a389b6db56ac7fb77e4a24fef6002df4563
|
@@ -108,7 +108,7 @@ class ::IshManager::InvoicesController < IshManager::ApplicationController
|
|
108
108
|
def email_send
|
109
109
|
@invoice = Ish::Invoice.find params[:id]
|
110
110
|
authorize! :send_email, @invoice
|
111
|
-
out = ::IshManager::LeadsetMailer.monthly_invoice( @invoice.id )
|
111
|
+
out = ::IshManager::LeadsetMailer.monthly_invoice( @invoice.id.to_s )
|
112
112
|
Rails.env.production? ? out.deliver_later : out.deliver_now
|
113
113
|
flash_notice "Scheduled to send an email."
|
114
114
|
redirect_to controller: :leadsets, action: :show, id: @invoice.leadset_id
|