angellist_api 0.0.8 → 0.0.9
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/angellist_api/configuration.rb +1 -2
- data/lib/angellist_api/version.rb +1 -1
- metadata +2 -2
@@ -15,7 +15,6 @@ module AngellistApi
|
|
15
15
|
:oauth_token_secret,
|
16
16
|
:proxy,
|
17
17
|
:user_agent,
|
18
|
-
:media_endpoint,
|
19
18
|
:faraday_options].freeze
|
20
19
|
|
21
20
|
# The adapter that will be used to connect if none is set
|
@@ -28,7 +27,7 @@ module AngellistApi
|
|
28
27
|
DEFAULT_CONSUMER_SECRET = nil
|
29
28
|
|
30
29
|
# The endpoint that will be used to connect if none is set
|
31
|
-
DEFAULT_ENDPOINT =
|
30
|
+
DEFAULT_ENDPOINT = "https://api.angel.co/1/".freeze
|
32
31
|
|
33
32
|
# The response format appended to the path and sent in the 'Accept' header if none is set
|
34
33
|
#
|