Skip to content

Commit c238247

Browse files
committed
Update parts of readme not done
fix order in select coz left it in test
1 parent c1515f8 commit c238247

File tree

4 files changed

+12
-2
lines changed

4 files changed

+12
-2
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ These examples are testable on GitHub pages, and will prompt for implicit authen
3838
<thead><tr><th colspan="3">Streamer Tool Type Things</th></tr></thead>
3939
<tbody>
4040
<tr><td><a href="https://barrycarlyon.github.io/twitch_misc/examples/channel_dashboard/">Near Clone of the Dashboard</a></td><td><a href="https://github.com/BarryCarlyon/twitch_misc/tree/main/examples/channel_dashboard">Source</a></td><td>The <a href="https://dashboard.twitch.tv/stream-manager">Dashboard</a> core parts (edit stream info) but via the API</td></tr>
41+
<tr><td><a href="https://barrycarlyon.github.io/twitch_misc/examples/blocked_terms/">Blocked Terms</a></td><td><a href="https://github.com/BarryCarlyon/twitch_misc/tree/main/examples/blocked_terms/">Source</a></td><td>Manage terms on any channel you are a moderator for and/or import/export as CSV</td></tr>
4142
<tr><td><a href="https://barrycarlyon.github.io/twitch_misc/examples/poll_tool/">Simple Poll Tool/Results Display</a></td><td><a href="https://github.com/BarryCarlyon/twitch_misc/tree/main/examples/poll_tool">Source</a></td><td>A simple tool to create a poll and monitor the results</td></tr>
4243
<tr><td><a href="https://barrycarlyon.github.io/twitch_misc/examples/channel_points/">Simple Channel Points Manager</a></td><td><a href="https://github.com/BarryCarlyon/twitch_misc/tree/main/examples/channel_points">Source</a></td><td>A simple tool to manage rewards</td></tr>
4344
<tr><td><a href="https://barrycarlyon.github.io/twitch_misc/examples/ban_request_manager/">Simple UnBan Requests Manager</a></td><td><a href="https://github.com/BarryCarlyon/twitch_misc/tree/main/examples/ban_request_manager">Source</a></td><td>A simple tool to manage unban requests</td></tr>

examples/blocked_terms/README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,12 @@ Give it a [whirl here](https://barrycarlyon.github.io/twitch_misc/examples/block
2020
- [Get Blocked Terms](https://dev.twitch.tv/docs/api/reference/#get-blocked-terms)
2121
- [Add Blocked Terms](https://dev.twitch.tv/docs/api/reference/#add-blocked-term)
2222
- [Remove Blocked Terms](https://dev.twitch.tv/docs/api/reference/#remove-blocked-term)
23-
- [Get Moderated Channels](https://dev.twitch.tv/docs/api/reference/#get-moderated-channels)
23+
- [Get Moderated Channels](https://dev.twitch.tv/docs/api/reference/#get-moderated-channels)
24+
25+
## Running the example
26+
27+
If you have PHP installed
28+
29+
> sudo php -S 127.0.0.1:80
30+
31+
or just throw the code up on a webpage somewhere

examples/blocked_terms/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
<div>
3030
<label for="channel_id">Select Channel</label>
3131
<select id="channel_id" name="channel_id" disabled>
32+
<option>Select Channel!</option>
3233
<option value="self">My Own</option>
33-
<option>Select</option>
3434
</select>
3535
<input type="button" id="select_channel" value="Load Terms" disabled />
3636
</div>

github/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<thead><tr><th colspan="3">Streamer Tool Type Things</th></tr></thead>
3333
<tbody>
3434
<tr><td><a href="https://barrycarlyon.github.io/twitch_misc/examples/channel_dashboard/">Near Clone of the Dashboard</a></td><td><a href="https://github.com/BarryCarlyon/twitch_misc/tree/main/examples/channel_dashboard">Source</a></td><td>The <a href="https://dashboard.twitch.tv/stream-manager">Dashboard</a> core parts (edit stream info) but via the API</td></tr>
35+
<tr><td><a href="https://barrycarlyon.github.io/twitch_misc/examples/blocked_terms/">Blocked Terms</a></td><td><a href="https://github.com/BarryCarlyon/twitch_misc/tree/main/examples/blocked_terms/">Source</a></td><td>Manage terms on any channel you are a moderator for and/or import/export as CSV</td></tr>
3536
<tr><td><a href="https://barrycarlyon.github.io/twitch_misc/examples/poll_tool/">Simple Poll Tool/Results Display</a></td><td><a href="https://github.com/BarryCarlyon/twitch_misc/tree/main/examples/poll_tool">Source</a></td><td>A simple tool to create a poll and monitor the results</td></tr>
3637
<tr><td><a href="https://barrycarlyon.github.io/twitch_misc/examples/channel_points/">Simple Channel Points Manager</a></td><td><a href="https://github.com/BarryCarlyon/twitch_misc/tree/main/examples/channel_points">Source</a></td><td>A simple tool to manage rewards</td></tr>
3738
<tr><td><a href="https://barrycarlyon.github.io/twitch_misc/examples/ban_request_manager/">Simple UnBan Requests Manager</a></td><td><a href="https://github.com/BarryCarlyon/twitch_misc/tree/main/examples/ban_request_manager">Source</a></td><td>A simple tool to manage unban requests</td></tr>

0 commit comments

Comments
 (0)