Skip to content

Commit

Permalink
fix: ツイキャスの配信通知登録・削除についてドキュメント追加
Browse files Browse the repository at this point in the history
  • Loading branch information
tetsuya-ki committed Jan 30, 2022
1 parent b12d31f commit f5f9349
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# このBotについて

- Discordで配信通知をするBotです(ニコ生とYouTubeにのみ対応)
- Discordで配信通知をするBotです(ニコ生、YouTube、ツイキャスに対応)
- スラッシュコマンド([goverfl0w / discord-py-slash-command](https://github.com/goverfl0w/discord-interactions))が使えるため、コマンドを覚える必要がなく、それぞれのオプションの意味が表示されます

## 機能
Expand All @@ -9,10 +9,14 @@

- 配信通知を登録します
- 必須のオプション(1つ)
- live_channel_id(配信通知対象のチャンネルID)
- live_channel_id(配信通知対象のチャンネルIDかURL)
- ニコニコ生放送の場合は`coXXXXXX`の部分
- coは省略可
- または、コミュニティのURL: `https://com.nicovideo.jp/community/coXXXXXX`
- YouTubeの場合は、`UCxxxxxxx`の部分
- または、チャンネルのURL: `https://www.youtube.com/channel/UCxxxxxxx`
- ツイキャスの場合は、`xxxxxxx`の部分
- または、ユーザーページのURL: `https://twitcasting.tv/xxxxxxx`
- オプション
- notification_chanel(通知チャンネル)
- #xxxxで指定したチャンネルに配信通知します
Expand Down Expand Up @@ -49,7 +53,11 @@
- live_channel_id(配信通知対象のチャンネルID)
- ニコニコ生放送の場合は`coXXXXXX`の部分
- coは省略可
- または、コミュニティのURL: `https://com.nicovideo.jp/community/coXXXXXX`
- YouTubeの場合は、`UCxxxxxxx`の部分
- または、チャンネルのURL: `https://www.youtube.com/channel/UCxxxxxxx`
- ツイキャスの場合は、`xxxxxxx`の部分
- または、ユーザーページのURL: `https://twitcasting.tv/xxxxxxx`
- オプション
- notification_chanel(通知先チャンネルID)
- 配信通知対象のチャンネルIDに加え、削除対象の通知先チャンネルを設定できます(#general等。「DM」でBotとのDMが削除対象になります)
Expand Down
4 changes: 2 additions & 2 deletions cogs/livenotificationcog.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,10 +132,10 @@ async def printer(self):
@cog_ext.cog_slash(
name='live-notification_add',
# guild_ids=guilds,
description='配信通知(YouTube,ニコ生)を作成する',
description='配信通知(YouTube,ニコ生,ツイキャス)を作成する',
options=[
manage_commands.create_option(name='live_channel_id',
description='YouTubeかニコ生のチャンネルID(*非公開のニコ生コミュニティは登録失敗します)',
description='YouTubeかニコ生のチャンネルID、またはツイキャスユーザーID。もしくはURL(*非公開のニコ生コミュニティは登録失敗します)',
option_type=3,
required=True),
manage_commands.create_option(name='notification_chanel',
Expand Down

0 comments on commit f5f9349

Please sign in to comment.