caboose-rets 0.1.187 → 0.1.188
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/models/caboose_rets/agent.rb +1 -1
- data/lib/caboose_rets/version.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: c8e48b24e1a880d1a66959223aa22f6351d228fe23867a7aed24b996853a2628
|
|
4
|
+
data.tar.gz: e72b0b61d9d661bb16833bf0e94b0a1a50674e6397c72c447ff8083ed7c8ac5f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a5383bee3263d0878573c05553dba1405af1334547452357daab7472407568981cc9d8e21c4b20b9662a10ab5e8c9906ef02e1acf22f184f5d8b98082f845771
|
|
7
|
+
data.tar.gz: de1ca6246f7ace6e9bcca1b60f1ccea31d1fd93961aacbc89aa6e324132ff95aa02aae95619821eb06ccf3793874edcecc9df0f777bb0cc50ae6f2549724e6e1
|
|
@@ -40,7 +40,7 @@ class CabooseRets::Agent < ActiveRecord::Base
|
|
|
40
40
|
CabooseRets::RetsImporter.import_agent(self.mls_id)
|
|
41
41
|
end
|
|
42
42
|
|
|
43
|
-
# Sends a SMS to the agent (using Twilio) notifying them that a new user has registered and been assigned to them
|
|
43
|
+
# Sends a SMS to the agent (using Twilio) notifying them that a new user has registered and been assigned to them.
|
|
44
44
|
def send_text(message, site_id)
|
|
45
45
|
s1 = Caboose::Setting.where(:site_id => site_id, :name => "twilio_account_sid").first
|
|
46
46
|
account_sid = s1 ? s1.value : nil
|
data/lib/caboose_rets/version.rb
CHANGED