Skip to content

Commit b098718

Browse files
Merge pull request #3 from SalesLoft/update-to-ssl
added the ssl link
2 parents e26cb27 + 52b2ffb commit b098718

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

cli/simple_api.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class SimpleApi
2-
BASE_URI = 'api.salesloft.com'
2+
BASE_URI = 'https://api.salesloft.com'
33
include HTTParty
44
base_uri BASE_URI
55

@@ -26,7 +26,7 @@ def update_person(id, data)
2626
end
2727

2828
def person_url(id)
29-
"https://#{BASE_URI}/app/people/#{id}"
29+
"#{BASE_URI}/app/people/#{id}"
3030
end
3131

3232
def cadences
@@ -38,7 +38,7 @@ def add_person_to_cadence(person_id, cadence_id)
3838
end
3939

4040
def cadence_people_url(cadence_id)
41-
"https://#{BASE_URI}/app/cadences_v2/#{cadence_id}/v2/cadence_people"
41+
"#{BASE_URI}/app/cadences_v2/#{cadence_id}/v2/cadence_people"
4242
end
4343

4444
private

0 commit comments

Comments
 (0)