This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /** | |
| * お知らせシートの messages シートから、お知らせを生成して chatwork に投稿する | |
| */ | |
| var Notifier = function () { | |
| this.config_sheet_name = 'configuration'; | |
| this.messages_sheet_name = 'messages'; | |
| this.rooms_sheet_name = 'rooms'; | |
| this.default_delivery_hour = 10; | |
| this.default_delivery_minute = 0; |
OlderNewer