Skip to content

Commit 75e5cfb

Browse files
committed
No static files used, so reference removed from conf.py.
Modified all links to docs.intercom.io in the main index. Added section on Notes.
1 parent add337a commit 75e5cfb

File tree

2 files changed

+29
-11
lines changed

2 files changed

+29
-11
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
# Add any paths that contain custom static files (such as style sheets) here,
124124
# relative to this directory. They are copied after the builtin static files,
125125
# so a file named "default.css" will overwrite the builtin "default.css".
126-
html_static_path = ['_static']
126+
# html_static_path = ['_static']
127127

128128
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
129129
# using the given strftime format.

docs/index.rst

Lines changed: 28 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Usage
2727
Authentication
2828
---------------
2929

30-
More information on `docs.intercom.io <http://docs.intercom.io/api#authentication>`_.
30+
Intercom documentation: `Authentication <http://docs.intercom.io/api#authentication>`_.
3131

3232
::
3333

@@ -41,7 +41,7 @@ Users
4141
Getting all Users
4242
+++++++++++++++++
4343

44-
More information on `docs.intercom.io <http://docs.intercom.io/api#getting_all_users>`_.
44+
Intercom documentation: `Getting all Users <http://docs.intercom.io/api#getting_all_users>`_.
4545

4646
::
4747

@@ -52,7 +52,7 @@ More information on `docs.intercom.io <http://docs.intercom.io/api#getting_all_u
5252
Getting a User
5353
++++++++++++++
5454

55-
More information on `docs.intercom.io <http://docs.intercom.io/api#getting_a_user>`_.
55+
Intercom documentation: `Getting a User <http://docs.intercom.io/api#getting_a_user>`_.
5656

5757
::
5858

@@ -61,7 +61,7 @@ More information on `docs.intercom.io <http://docs.intercom.io/api#getting_a_use
6161
Creating a User
6262
+++++++++++++++
6363

64-
More infomation on `docs.intercom.io <http://docs.intercom.io/api#creating_a_user>`_.
64+
Intercom documentation: `Creating a User <http://docs.intercom.io/api#creating_a_user>`_.
6565

6666
::
6767

@@ -76,7 +76,7 @@ More infomation on `docs.intercom.io <http://docs.intercom.io/api#creating_a_use
7676
Updating a User
7777
+++++++++++++++
7878

79-
More information on `docs.intercom.io <http://docs.intercom.io/api#updating_a_user>`_.
79+
Intercom documentation: `Updating a User <http://docs.intercom.io/api#updating_a_user>`_.
8080

8181
::
8282

@@ -87,19 +87,33 @@ More information on `docs.intercom.io <http://docs.intercom.io/api#updating_a_us
8787
Deleting a User
8888
+++++++++++++++
8989

90-
More information on `docs.intercom.io <http://docs.intercom.io/api#deleting_a_user>`_.
90+
Intercom documentation: `Deleting a User <http://docs.intercom.io/api#deleting_a_user>`_.
9191

9292
::
9393

9494
deleted_user = User.delete(email="ben@intercom.io")
9595

96+
Notes
97+
-----
98+
99+
Creating a Note
100+
+++++++++++++++
101+
102+
Intercom documentation: `Creating a Note <http://docs.intercom.io/api#creating_a_note>`_.
103+
104+
::
105+
106+
from intercom import Note
107+
note = Note.create(email="ben@intercom.io",
108+
body="These are a few of my favourite things.")
109+
96110
Impressions
97111
-----------
98112

99113
Creating an Impression
100114
++++++++++++++++++++++
101115

102-
More information on `docs.intercom.io <http://docs.intercom.io/api#creating_an_impression>`_.
116+
Intercom documentation: `Creating an Impression <http://docs.intercom.io/api#creating_an_impression>`_.
103117

104118
::
105119

@@ -113,7 +127,7 @@ Message Threads
113127
Getting Message Threads
114128
+++++++++++++++++++++++
115129

116-
More information on `docs.intercom.io <http://docs.intercom.io/api#getting_messages>`_.
130+
Intercom documentation: `Getting Message Threads <http://docs.intercom.io/api#getting_messages>`_.
117131

118132
::
119133

@@ -129,13 +143,17 @@ More information on `docs.intercom.io <http://docs.intercom.io/api#getting_messa
129143
Creating a Message Thread
130144
+++++++++++++++++++++++++
131145

146+
Intercom documentation: `Getting a Message Thread <http://docs.intercom.io/api#creating_a_message>`_.
147+
132148
::
133149

134150
message_thread = MessageThread.create(email="ben@intercom.io",
135151
body="Hey Intercom, What is up?")
136152

137-
Reply on a Message Thread
138-
+++++++++++++++++++++++++
153+
Replying on a Message Thread
154+
++++++++++++++++++++++++++++
155+
156+
Intercom documentation: `Replying on a Message Thread <http://docs.intercom.io/api#replying_to_a_message>`_.
139157

140158
::
141159

0 commit comments

Comments
 (0)