Skip to content

Commit

Permalink
Merge pull request #3 from SalesLoft/update-to-ssl
Browse files Browse the repository at this point in the history
added the ssl link
  • Loading branch information
GrantJamesPowell authored Sep 13, 2017
2 parents e26cb27 + 52b2ffb commit b098718
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cli/simple_api.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
class SimpleApi
BASE_URI = 'api.salesloft.com'
BASE_URI = 'https://api.salesloft.com'
include HTTParty
base_uri BASE_URI

Expand All @@ -26,7 +26,7 @@ def update_person(id, data)
end

def person_url(id)
"https://#{BASE_URI}/app/people/#{id}"
"#{BASE_URI}/app/people/#{id}"
end

def cadences
Expand All @@ -38,7 +38,7 @@ def add_person_to_cadence(person_id, cadence_id)
end

def cadence_people_url(cadence_id)
"https://#{BASE_URI}/app/cadences_v2/#{cadence_id}/v2/cadence_people"
"#{BASE_URI}/app/cadences_v2/#{cadence_id}/v2/cadence_people"
end

private
Expand Down

0 comments on commit b098718

Please sign in to comment.